From ce10a9482af00dd316d9866fd9bed2934c9db191 Mon Sep 17 00:00:00 2001 From: jackpoz Date: Sun, 17 May 2020 18:57:51 +0200 Subject: [PATCH] CI/GitHub: Add action to label issues --- .github/workflows/issue-labeler.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/issue-labeler.yml diff --git a/.github/workflows/issue-labeler.yml b/.github/workflows/issue-labeler.yml new file mode 100644 index 00000000000..505ff1741d7 --- /dev/null +++ b/.github/workflows/issue-labeler.yml @@ -0,0 +1,14 @@ +on: + issues: + types: [opened] + +jobs: + tag_issues: + 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