aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2020-05-23 23:22:54 +0200
committerjackpoz <giacomopoz@gmail.com>2020-05-23 23:22:54 +0200
commitebb6f12db811d78a538982cca9b8cc1887fc2527 (patch)
tree99e237cbd31c39d9e6eedb9329df1ab2f330ff55
parent59e8b98bef5cee939e684869c3a8bd6ae950ff5b (diff)
CI/GitHub: Add another Pull Request labeler as cron job
-rw-r--r--.github/workflows/pr-labeler.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml
new file mode 100644
index 00000000000..7dcc85deaac
--- /dev/null
+++ b/.github/workflows/pr-labeler.yml
@@ -0,0 +1,15 @@
+on:
+ schedule:
+ - cron: '*/5 * * * *'
+
+jobs:
+ pr_labeler:
+ if: github.repository == 'TrinityCore/TrinityCore'
+ 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 }}