Add agentic workflow for automatic CHANGELOG PR link addition#442
Merged
Conversation
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Create agentic workflow for CHANGELOG modifications
Add agentic workflow for automatic CHANGELOG PR link addition
Oct 22, 2025
Mossaka
approved these changes
Oct 22, 2025
Mossaka
approved these changes
Oct 22, 2025
Mossaka
added a commit
to Mossaka/wassette
that referenced
this pull request
Feb 2, 2026
…oft#442) * Initial plan * Add CHANGELOG PR link automation workflow Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> * Update CHANGELOG.md with new agentic workflow entry Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This PR adds a new GitHub Agentic Workflow that automatically ensures all CHANGELOG entries include proper PR links, similar to the existing issue triage workflow.
Problem
When contributors add entries to CHANGELOG.md, they often forget to include the PR link or use inconsistent formatting. This makes it harder to trace changes back to their source PRs and maintain a consistent changelog format.
Solution
Created
changelog-pr-link.md, an agentic workflow that:openedandsynchronizeevents)## [Unreleased]section without PR links([#123](https://github.com/microsoft/wassette/pull/123))safe-outputs.create-pull-requestfeatureExample
Before (new CHANGELOG entry without PR link):
- Added new feature for XYZAfter (workflow adds PR link automatically):
Security Features
safe-outputs.create-pull-requestto securely create PRs without write permissionsImplementation Details
The workflow uses:
pull_requestevents with path filter forCHANGELOG.mdcreate-pull-requestwith[auto]prefix andautomation,changeloglabelsFiles Changed
.github/workflows/changelog-pr-link.md(107 lines) - Workflow definition.github/workflows/changelog-pr-link.lock.yml(4,307 lines) - Auto-generated GitHub Actions YAMLCHANGELOG.md- Added entry documenting this new workflowVerification
Both the markdown workflow file and the compiled YAML lock file are included in this PR, as required by the agentic workflows system.
Related
Follows the same pattern as the existing
issue-triage.mdworkflow and uses the safe-outputs feature as documented in https://githubnext.github.io/gh-aw/reference/safe-outputs/.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.