We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4cd09f1 + bf63f55 commit b2b561aCopy full SHA for b2b561a
1 file changed
.github/workflows/auto-close-issues.yml
@@ -0,0 +1,20 @@
1
+name: Close Linked Issues on PR Merge
2
+
3
+on:
4
+ pull_request:
5
+ types: [closed]
6
+ branches:
7
+ - 2.0
8
+ - dev-2.0
9
10
+jobs:
11
+ close_issues:
12
+ if: github.event.pull_request.merged == true
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Close linked issues on non-default branches
16
+ uses: processing/branch-pr-close-issue@v1
17
+ with:
18
+ token: ${{ secrets.GITHUB_TOKEN }}
19
+ branch: dev-2.0
20
0 commit comments