diff options
-rw-r--r-- | .github/workflows/issue-labeler.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/issue-labeler.yml b/.github/workflows/issue-labeler.yml new file mode 100644 index 0000000000..a846175add --- /dev/null +++ b/.github/workflows/issue-labeler.yml @@ -0,0 +1,15 @@ +on: + issues: + types: [opened] + +jobs: + issue_labeler: + if: github.repository == 'azerothcore/azerothcore-wotlk' + runs-on: ubuntu-latest + name: Issue Labeler + steps: + - name: Issue Labeler + id: issue-labeler + uses: azerothcore/GitHub-Actions@issue-labeler-1.0.1 + with: + token: ${{ secrets.GITHUB_TOKEN }} |