Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/reusable-conventional-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
continue
fi

if ! echo "$MSG" | grep -qP "^(${ALLOWED_TYPES})(\(.+\))?: .{1,}$"; then
if ! echo "$MSG" | grep -qP "^(${ALLOWED_TYPES})(\(.+\))?!?: .{1,}$"; then
echo "::error::Invalid commit message: $MSG ($HASH)"
FAILED=1
fi
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.1] - 2026-05-01

### Fixed

- `reusable-conventional-commits.yml` — accept the `!` breaking-change marker in commit subjects
Comment thread
apermo marked this conversation as resolved.
(e.g. `feat(api)!: drop deprecated input`). The Conventional Commits 1.0 spec defines `!` and a
`BREAKING CHANGE:` footer as equivalent ways to mark a breaking change; the validator regex
previously only accepted the footer form, rejecting spec-compliant subjects like the one
intended for the 0.6.0 release commit (which had to be rewritten to drop the `!`).

## [0.6.0] - 2026-05-01

### Changed
Expand Down
Loading