Conversation
Add release automation that comments on issues closed by PRs included in a published release, and document the PR keyword requirement so contributors know how to opt issues into the notification flow. Co-Authored-By: GPT-5.5 <noreply@openai.com> Co-authored-by: Cursor <cursoragent@cursor.com>
Semver Impact of This PR⚪ None (no version bump detected) 📋 Changelog PreviewThis is how your changes will appear in the changelog. Features
FixesFlutter
DependenciesDeps
Internal Changes
🤖 This preview updates automatically when you update the PR. |
There was a problem hiding this comment.
Pull request overview
Adds automation to comment on GitHub issues that were closed by PRs included in a stable release, and documents the required issue-linking syntax for contributors.
Changes:
- Documented use of GitHub closing keywords (
Fixes #123, etc.) so linked issues can be detected for post-release notifications. - Added a new GitHub Actions workflow that runs on
release.published(and manually) to comment on linked issues for stable releases.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
CONTRIBUTING.md |
Documents the requirement to use GitHub closing keywords so linked issues can be notified after release. |
.github/workflows/release-comment-issues.yml |
New workflow that resolves the release version and runs getsentry/release-comment-issues-gh-action to comment on linked issues. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit d5ccfd7. Configure here.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Declare the token scopes needed to read release and pull request data and comment on linked issues during the release notification workflow. Co-Authored-By: GPT-5.5 <noreply@openai.com> Co-authored-by: Cursor <cursoragent@cursor.com>

📜 Description
Add a release workflow that comments on GitHub issues closed by PRs included in a published stable release.
Also document that PR authors need to use GitHub closing keywords, such as
Fixes #123, for linked issues to receive the release notification.💡 Motivation and Context
This mirrors the release issue notification automation used by other Sentry SDK repositories and makes the required PR issue-linking behavior explicit for contributors.
💚 How did you test it?
Reviewed the workflow against this repo's release and changelog conventions. No automated tests were run because this is a GitHub Actions and documentation-only change.
📝 Checklist
sendDefaultPiiis enabled🔮 Next steps
Monitor the first stable release run to confirm the action comments on issues linked through closing keywords.
Made with Cursor