ci: conventional commits et semantic release (epic #101)#107
Closed
bgauduch wants to merge 6 commits into
Closed
Conversation
This was referenced Jun 14, 2026
bgauduch
added a commit
that referenced
this pull request
Jun 17, 2026
Implements the release-please flow from ADR-0002 and the Phase 1 P0 tag subset from ADR-0003, reworking the in-flight Semantic Release draft (#107) into release-please. - add release-please-config.json (simple release type, v-prefixed tags) - add .release-please-manifest.json seeded at 8.0.0 to continue the existing major line under project semver (vX.Y.Z) - add .github/workflows/release-please.yml — maintains the Release PR and creates the GitHub release + version tag on merge - migrate .github/workflows/release.yml to trigger on the vX.Y.Z tag and publish the Phase 1 tag subset: fully-pinned vX.Y.Z_tf-A.B.C_aws-D.E.F (every combination) plus vX.Y.Z and latest on the latest bundled combination; the manual release trigger is removed Out of scope (Phase 3): edge / floating vX.Y tags, GHCR, the zenika->bgauduch rename and docker/login-action migration. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01YDmRomapTbonHPFwnU61zR --------- Co-authored-by: Claude <noreply@anthropic.com>
Owner
Author
|
Closing — superseded. The release-automation decision moved to release-please (ADR-0002), now delivered in #127. Disposition of this PR's parts so nothing is lost:
Thanks — the Conventional-Commits groundwork here directly shaped the final design. Generated by Claude Code |
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.
Summary
This PR implements epic #101: adopting Conventional Commits (enforced in CI) and automating releases with Semantic Release, replacing the current manual release process.
Changes
lint-commits.yml+commitlint.config.mjs): validates all commits on PRs against the Conventional Commits spec usingwagoid/commitlint-github-action@v6lint-pr-title.yml): enforces semantic PR titles usingamannn/action-semantic-pull-request@v5.releaserc.json+semantic-release.yml): automates version bumping, changelog generation, and GitHub release creation on push tomasterwhen relevant files change; usescycjimmy/semantic-release-action@v4release.yml: now triggers onv*git tags (created by Semantic Release) instead of therelease: publishedevent; uses the new tag schemevX.Y.Z_tf-A.B.C_aws-D.E.F; generates floating minor tags (tf-A.B_aws-D.E); applieslatestandvX.Y.Ztags only for the latest tool version combination; upgraded todocker/login-action@v3,docker/build-push-action@v6,docker/setup-qemu-action@v3,docker/setup-buildx-action@v3push-latest.yml: replaced manualecho | docker loginwithdocker/login-action@v3CHANGELOG.md: seed file for Semantic Release to append toBreaking changes
The manual release process (GitHub Release published →
release.yml) is fully replaced by the automated pipeline:mastersemantic-release.ymlbumps the version and creates a git tag (vX.Y.Z)release.ymltriggers on that tag and builds/pushes all Docker image variantsCloses #101
https://claude.ai/code/session_01RsmDFm6w4jVXwvzmRd9BCv
Generated by Claude Code