diff options
author | jackpoz <giacomopoz@gmail.com> | 2020-05-17 18:57:51 +0200 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2020-05-17 18:57:51 +0200 |
commit | ce10a9482af00dd316d9866fd9bed2934c9db191 (patch) | |
tree | 1cb2c55e909958947ba46c921ed6ea59383ff0bf /.github | |
parent | c77b1f8b119fd9595de93a97d86c280fca1536bd (diff) |
CI/GitHub: Add action to label issues
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/issue-labeler.yml | 14 |
1 files changed, 14 insertions, 0 deletions
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 |