ci(fleet): centralize trunk config and gate release tags#39
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 5659c99272
ℹ️ 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".
| ;; | ||
| *) | ||
| release_package_tag="${upstream_version}-aio.1" | ||
| if printf '%s\n' "${commit_message}" | grep -Fxq "chore(release): ${changelog_version}"; then |
There was a problem hiding this comment.
Accept release commit titles with PR suffix
The release tag detection now requires an exact line match on chore(release): <version>, but GitHub squash merges commonly produce chore(release): <version> (#123). In that case release_package_tag stays empty, so the publish job skips pushing the immutable <upstream>-aio.N image tag and related wrapper metadata on the release commit. This breaks the documented release flow for repos that use the default squash-merge title format.
Useful? React with 👍 / 👎.
Summary
Validation