diff options
-rw-r--r-- | .github/workflows/issue-labeler.yml | 14 | ||||
-rw-r--r-- | .github/workflows/pr-labeler.yml | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/issue-labeler.yml b/.github/workflows/issue-labeler.yml new file mode 100644 index 00000000000..0eaf1c8376b --- /dev/null +++ b/.github/workflows/issue-labeler.yml @@ -0,0 +1,14 @@ +on: + issues: + types: [opened] + +jobs: + issue_labeler: + runs-on: ubuntu-latest + name: Issue Labeler + steps: + - name: Issue Labeler + id: issue-labeler + uses: TrinityCore/GitHub-Actions@issue-labeler-prod + with: + token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml new file mode 100644 index 00000000000..3df7dea6e69 --- /dev/null +++ b/.github/workflows/pr-labeler.yml @@ -0,0 +1,14 @@ +on: + pull_request: + types: [opened] + +jobs: + pr_labeler: + runs-on: ubuntu-latest + name: Pull Request Labeler + steps: + - name: Pull Request Labeler + id: pr-labeler + uses: TrinityCore/GitHub-Actions@pr-labeler-prod + with: + token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file |