feat: add changelog and gorelease link#20
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 8eb59d5bcd
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| found && (/^## \[/ || /^\[[^]]+\]: /) { exit } | ||
| /^## \[/ && index($0, "[" ver "]") { found=1; next } | ||
| found { print } | ||
| ' CHANGELOG.md > release_notes.md |
There was a problem hiding this comment.
Avoid dirtying git before GoReleaser
In the tag workflow, this redirection creates an untracked release_notes.md in the checkout immediately before goreleaser release; I checked the repo .gitignore and this file is not ignored. GoReleaser's release help documents --clean as only removing dist, and its dirty-state docs show untracked files (?? created.txt) fail validation, so every release with a matching changelog section will abort before publishing unless the notes file is ignored or written outside the worktree.
Useful? React with 👍 / 👎.
No description provided.