aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2020-08-02 18:29:18 +0200
committerjackpoz <giacomopoz@gmail.com>2020-08-02 18:29:18 +0200
commitc155a68ad5dce6e00c448e527d1cc6703c03db45 (patch)
treeff354fb5b2498adb478df795dd856d39180d2afc /.github/workflows
parent76d6c1793a1eeee4f682a3fb2a2048f703af6df1 (diff)
Ci/GitHub: Close issues when a fix gets pushed to 3.3.5 branch
Fixes #25198
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/issue-closer.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/issue-closer.yml b/.github/workflows/issue-closer.yml
new file mode 100644
index 00000000000..9ec8b28c5d6
--- /dev/null
+++ b/.github/workflows/issue-closer.yml
@@ -0,0 +1,16 @@
+on:
+ push:
+ branches:
+ - 3.3.5
+
+jobs:
+ issue_closer:
+ if: github.repository == 'TrinityCore/TrinityCore'
+ runs-on: ubuntu-latest
+ name: Issue Closer
+ steps:
+ - name: Issue Closer
+ id: issue-closer
+ uses: TrinityCore/GitHub-Actions@issue-closer-prod
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file