mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-25 09:47:42 +00:00
chore: add a workflow to automatically close linked issues
This commit is contained in:
parent
6840bd0acf
commit
3197b768c7
1 changed files with 20 additions and 0 deletions
20
.github/workflows/close-linked-issues-for-merged-prs.yml
vendored
Normal file
20
.github/workflows/close-linked-issues-for-merged-prs.yml
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
name: Close linked issues for merged pull requests
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
branches:
|
||||
- beta
|
||||
- 'stable-*'
|
||||
- 'epic/*'
|
||||
|
||||
jobs:
|
||||
closeIssueOnPrMergeTrigger:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Closes issues related to a merged pull request.
|
||||
uses: ldez/gha-mjolnir@v1.5.0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
Loading…
Add table
Reference in a new issue