fix(ci): release notes automation + coverage artifact fix - #3
Merged
Conversation
The pr-comment-summary and coverage-gate jobs tried to download the coverage-report artifact unconditionally. When unit-tests failed (or were cancelled), the artifact was never uploaded, causing 'Artifact not found' errors. - Add 'if: needs.unit-tests.result == success' to coverage-gate - Add 'if: needs.unit-tests.result == success' to coverage download step - Summary generation already handles missing coverage gracefully
- Use § delimiter to capture full commit body (not just subject line) - Extract and display bullet points from commit descriptions - Strip git metadata (Change-Id, Co-authored-by, etc.) - Fix sed regex for prefix stripping (use [^:]* instead of nested parens) - Fix OTHER_CHANGEStidy typo - Add Other Changes section for test/docs/ci/chore commits Before: release notes showed static 'No improvements in this release' After: release notes show actual commit details with bullet points
- Replace fragile bash while-loop parsing with single awk script - Correctly extracts hash, subject, and multi-line body from git log - Strips conventional commit prefixes (feat, fix, refactor, perf, etc.) - Indents body bullet points under each commit entry - Strips git metadata (Change-Id, Co-authored-by, etc.) - Handles nested parentheses in scopes like fix(security): - Fixes OTHER_CHANGEStidy typo from original code
CI/CD Pipeline Results
Preview URL: |
ryann-g
added a commit
that referenced
this pull request
May 31, 2026
fix(ci): release notes automation + coverage artifact fix LGTM
ryann-g
added a commit
that referenced
this pull request
May 31, 2026
fix(ci): release notes automation + coverage artifact fix LGTM
ryann-g
added a commit
that referenced
this pull request
May 31, 2026
fix(ci): release notes automation + coverage artifact fix LGTM
ryann-g
added a commit
that referenced
this pull request
May 31, 2026
fix(ci): release notes automation + coverage artifact fix LGTM
ryann-g
added a commit
that referenced
this pull request
May 31, 2026
fix(ci): release notes automation + coverage artifact fix LGTM
ryann-g
added a commit
that referenced
this pull request
May 31, 2026
fix(ci): release notes automation + coverage artifact fix LGTM
ryann-g
added a commit
that referenced
this pull request
May 31, 2026
fix(ci): release notes automation + coverage artifact fix LGTM
ryann-g
added a commit
that referenced
this pull request
Jun 8, 2026
fix(ci): release notes automation + coverage artifact fix LGTM
ryann-g
added a commit
that referenced
this pull request
Jun 21, 2026
fix(ci): release notes automation + coverage artifact fix LGTM
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.
CI/CD Fixes
Changes
pr-gatekeeper.yml — Skip coverage artifact download when unit-tests fail
production-release.yml — Automate release notes from commit bodies
Verification