Skip to content

Commit

Permalink
add GitHub action to comment released PRs and issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dcastil committed Aug 13, 2022
1 parent 1236e8f commit 22aa14a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/comment-released-prs-and-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Comment released PRs and issues

on:
release:
types: [published]

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: apexskier/github-release-commenter@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
comment-template: This was addressed in release {release_link}.

0 comments on commit 22aa14a

Please sign in to comment.