aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2020-05-21 16:43:42 +0200
committerjackpoz <giacomopoz@gmail.com>2020-05-21 16:43:42 +0200
commit92a289e45518e6a4c3a34fed6d28f09002e53352 (patch)
treed166ce97a0c2ed9a28049dcee5e47dfbfd0fe9ef /.github
parentaedab76a119d2270d50e4f8692841fc9132c1fdf (diff)
CI/GitHub: Add action to label pull requests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pr-labeler.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml
new file mode 100644
index 00000000000..9ea6a4ccd1f
--- /dev/null
+++ b/.github/workflows/pr-labeler.yml
@@ -0,0 +1,14 @@
+on:
+ pull_request:
+ types: [opened]
+
+jobs:
+ tag_issues:
+ 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 }}