Skip to content

Commit

Permalink
Merge pull request #1279 from nichwall/release_close_issue
Browse files Browse the repository at this point in the history
Add: workflow to automatically close issues on release
  • Loading branch information
advplyr authored Aug 12, 2024
2 parents 45239bc + be98e06 commit 7b60c7b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/close-issues-on-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Close fixed issues on release.
on:
release:
types: [published]

permissions:
contents: read
issues: write

jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Close issues marked as fixed upon a release.
uses: gcampbell-msft/fixed-pending-release@7fa1b75a0c04bcd4b375110522878e5f6100cff5
with:
label: 'awaiting release'
removeLabel: true
applyToAll: true
message: Fixed in [${releaseTag}](${releaseUrl}).

0 comments on commit 7b60c7b

Please sign in to comment.