Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Actions release workflow so GitHub Release notes are derived from the tag’s annotation content (instead of effectively coming from the commit), matching the intended Keeta Anchor SDK release process.
Changes:
- Add a workflow step that extracts release notes text from the tag ref and writes it to a temp file.
- Switch
gh release createto use--notes-filepointing at the extracted notes.
|
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Release workflow so release notes are generated from the tag message (via gh release create --notes-from-tag) rather than inadvertently using the commit message, addressing the known actions/checkout tag-fetch behavior.
Changes:
- Bump
actions/checkoutused by the release workflow to a newer major version. - Explicitly fetch tags during checkout to ensure annotated tag messages are available for release notes.
Srayman
approved these changes
Mar 16, 2026
rkeene
added a commit
that referenced
this pull request
Mar 17, 2026
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.



This change fixes a bug in creating the GitHub release notes for a release of the Keeta Anchor SDK. Prior to this change it would pull the notes from the commit instead of the tag. This change fixes it so that it pull it from the tag instead of the commit.
This was caused by a bug: actions/checkout#290
Fixed in v6.0.2: actions/checkout#2356