-
Notifications
You must be signed in to change notification settings - Fork 0
ci: add release notes automation (GitHub native auto-generated notes) #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # GitHub Auto-Generated Release Notes Configuration | ||
| # Docs: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes | ||
|
|
||
| changelog: | ||
| exclude: | ||
| labels: | ||
| - duplicate | ||
| - invalid | ||
| - wontfix | ||
| - question | ||
| authors: | ||
| - dependabot | ||
| categories: | ||
| - title: "🎉 New Features" | ||
| labels: | ||
| - type:feature | ||
| - enhancement | ||
| - title: "🔧 Improvements & Chores" | ||
| labels: | ||
| - type:chore | ||
| - refactor | ||
| - title: "📚 Documentation" | ||
| labels: | ||
| - type:docs | ||
| - documentation | ||
| - title: "🐛 Bug Fixes" | ||
| labels: | ||
| - type:bug | ||
| - bug | ||
| - title: "🔬 Research & Spikes" | ||
| labels: | ||
| - type:spike | ||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,34 +1,58 @@ | ||||||||
| name: Squad Release | ||||||||
| # dotnet project — configure build, test, and release commands below | ||||||||
|
|
||||||||
| on: | ||||||||
| push: | ||||||||
| branches: [main] | ||||||||
| tags: | ||||||||
| - 'v*.*.*' | ||||||||
|
|
||||||||
| permissions: | ||||||||
| contents: write | ||||||||
|
|
||||||||
| jobs: | ||||||||
| release: | ||||||||
| runs-on: ubuntu-latest | ||||||||
|
||||||||
| runs-on: ubuntu-latest | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ### 2026-02-23: Release notes automation implemented | ||
| **By:** Aragorn (Backend Dev) | ||
| **What:** Created .github/release.yml (label→section mapping) and updated squad-release.yml (trigger on tag push, runs dotnet test, uses --generate-notes). Zero external dependencies — GitHub native feature. | ||
| **Why:** Matthew approved Gandalf's recommendation for GitHub native auto-generated release notes. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| # Release Notes Automation Implementation — Session Log | ||
|
|
||
| **Date:** 2026-02-24T14:35:00Z | ||
| **Agent:** Scribe | ||
| **Task:** Log Aragorn's release notes automation work | ||
|
|
||
| ## Summary | ||
|
|
||
| Aragorn implemented GitHub's native auto-generated release notes: | ||
| - Created `.github/release.yml` with 6 label→section mappings | ||
| - Updated `.github/workflows/squad-release.yml` for tag-triggered releases with dotnet test validation | ||
| - Zero external dependencies; backward compatible | ||
| - Commit: 406ec6d pushed to origin/main | ||
|
|
||
| ## Decision Inbox Processed | ||
|
|
||
| Merged `aragorn-release-notes-impl.md` into `.squad/decisions/decisions.md`; inbox file retained in `.squad/decisions/inbox/`. | ||
|
|
||
| ## References | ||
|
|
||
| - `.squad/decisions/decisions.md` — Updated with implementation details | ||
| - `.github/release.yml` — GitHub release notes configuration | ||
| - `.github/workflows/squad-release.yml` — Updated release workflow | ||
|
|
||
| --- | ||
|
|
||
| *Scribe duties complete.* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discrepancy with PR description: The PR description states that
type:choremaps to "🔧 Improvements", but the actual implementation (line 18) uses "🔧 Improvements & Chores". Additionally, the PR description states thatpriority:p0maps to "🚀 Infrastructure", but the implementation (line 33) uses "🚀 Infrastructure & DevOps". Update either the PR description or the file content to ensure consistency.