GitHub Action to automatically comment on PRs and Issues when a fix is released.
TypeScript
27
513 commits
updated Jan 21, 2026
This GitHub Action automatically comments on and/or labels Issues and PRs when a fix is released for them.
Use this action in a workflow triggered by a release. It will scan commits between that and the prior release, find associated Issues and PRs, and comment on them to let people know a release has been made. Associated Issues and PRs can be directly linked to the commit or manually linked from a PR associated with the commit.
GITHUB_TOKEN (optional)
A GitHub access token with write access to your repo's issues, such as:
secrets.GITHUB_TOKEN with appropriately configured permissions (the example yaml below uses this)repo scopecomment-template (optional)
Override the comment posted on Issues and PRs. Set to the empty string to disable commenting. Several variables strings will be automatically replaced:
{release_link} - a markdown link to the release{release_name} - the release's name{release_tag} - the release's taglabel-template (optional)
Add the given label. Multiple labels can be separated by commas. Several variable strings will be automatically replaced:
{release_name} - the release's name{release_tag} - the release's tagskip-label (optional)
Skip processing if any of the given labels are present. Same processing rules as label-template. Default is "dependencies".
on:
release:
types: [published]
permissions: # required if repository sets restricted permissions for token, see https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
issues: write # required if active on issues
pull-requests: write # required if active on pull requests
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: apexskier/github-release-commenter@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
comment-template: |
Release {release_link} addresses this.
These are some known limitations of this action. I'd like to try to address them in the future.
Error: You have triggered an abuse detection mechanism. Please wait a few minutes before you try again.. Consider using the skip-label input to reduce your load on the GitHub API.Workflows will automatically update the tags v1 and latest, allowing you to reference one of those instead of locking to a specific release.
264 commits
124 commits
124 commits
1 commits
TypeScript
97.4%
JavaScript
2.6%
GitHub Action to automatically comment on PRs and Issues when a fix is released.
TypeScript
27
513 commits
updated Jan 21, 2026
This GitHub Action automatically comments on and/or labels Issues and PRs when a fix is released for them.
Use this action in a workflow triggered by a release. It will scan commits between that and the prior release, find associated Issues and PRs, and comment on them to let people know a release has been made. Associated Issues and PRs can be directly linked to the commit or manually linked from a PR associated with the commit.
GITHUB_TOKEN (optional)
A GitHub access token with write access to your repo's issues, such as:
secrets.GITHUB_TOKEN with appropriately configured permissions (the example yaml below uses this)repo scopecomment-template (optional)
Override the comment posted on Issues and PRs. Set to the empty string to disable commenting. Several variables strings will be automatically replaced:
{release_link} - a markdown link to the release{release_name} - the release's name{release_tag} - the release's taglabel-template (optional)
Add the given label. Multiple labels can be separated by commas. Several variable strings will be automatically replaced:
{release_name} - the release's name{release_tag} - the release's tagskip-label (optional)
Skip processing if any of the given labels are present. Same processing rules as label-template. Default is "dependencies".
on:
release:
types: [published]
permissions: # required if repository sets restricted permissions for token, see https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
issues: write # required if active on issues
pull-requests: write # required if active on pull requests
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: apexskier/github-release-commenter@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
comment-template: |
Release {release_link} addresses this.
These are some known limitations of this action. I'd like to try to address them in the future.
Error: You have triggered an abuse detection mechanism. Please wait a few minutes before you try again.. Consider using the skip-label input to reduce your load on the GitHub API.Workflows will automatically update the tags v1 and latest, allowing you to reference one of those instead of locking to a specific release.
264 commits
124 commits
124 commits
1 commits
TypeScript
97.4%
JavaScript
2.6%