aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2020-05-17 18:57:51 +0200
committerjackpoz <giacomopoz@gmail.com>2020-05-17 18:57:51 +0200
commitce10a9482af00dd316d9866fd9bed2934c9db191 (patch)
tree1cb2c55e909958947ba46c921ed6ea59383ff0bf /.github
parentc77b1f8b119fd9595de93a97d86c280fca1536bd (diff)
CI/GitHub: Add action to label issues
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/issue-labeler.yml14
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