Add workflow to trigger changelog-automation on CHANGELOG.md changes#117
Merged
augmentmoogi merged 1 commit intomainfrom Apr 8, 2026
Merged
Conversation
There was a problem hiding this comment.
This workflow cleanly dispatches the downstream changelog-automation workflow and uses curl -sf so it fails fast on non-success responses. My only suggestion is to explicitly scope the job's GITHUB_TOKEN permissions, which is consistent with the other workflows in this repo and follows the principle of least privilege.
🤖 Automated review complete. Please react with 👍 or 👎 on the individual review comments to provide feedback on their usefulness.
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.
Add a GitHub Actions workflow that automatically triggers the
changelog-automationrepository's workflow wheneverCHANGELOG.mdis updated onmain.What's Changing
Creates
.github/workflows/trigger-changelog-automation.yml, which listens for pushes tomainthat modifyCHANGELOG.mdand dispatches thechangelog.ymlworkflow inaugmentcode/changelog-automationvia the GitHub API.Key Details
pushtomainwith a path filter onCHANGELOG.mdPOSTrequest to thechangelog-automationrepo'sworkflow_dispatchendpoint targetingmainCHANGELOG_AUTOMATION_PATsecret for cross-repository authorizationcurl -sfso the job fails fast if the dispatch call returns a non-success statusThis removes the need to manually kick off the downstream changelog automation whenever the changelog is updated through a PR merge or direct push.
🤖 This description was generated automatically. Please react with 👍 if it's helpful or 👎 if it needs improvement.