Add workflow to update release notes from milestone#665
Draft
maraf wants to merge 1 commit into
Draft
Conversation
Adds a manually triggered GitHub Action that: - Takes a milestone title and release tag as inputs - Fetches closed issues from the milestone - Generates release body matching existing templates (api-* and blazor-*) - For API releases, includes Docker container link from GHCR - Updates the release via gh release edit Co-authored-by: Copilot <223556219+Copilot@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.
Release notes are currently written manually for each release, following different templates for
api-*andblazor-*releases. This adds a manually triggered GitHub Action to automate that process.How it works
The workflow takes two inputs -- a milestone title and a release tag -- and generates the release body by:
apiorblazor) from the tag prefixgh release editUsage
Go to Actions > "Update Release Notes" > Run workflow, and provide:
milestone: e.g.,api-v1.9.0release_tag: e.g.,api-v1.9.0Notes
contents: writeto update releases andpackages: readto look up Docker container package IDs for API releases.