fix(goreleaser): replace unsupported negative lookahead with group reordering
Description
- fix(goreleaser): replace unsupported negative lookahead with group reordering
Go's regexp engine doesn't support Perl/PCRE syntax like negative
lookahead (?!...). The release job was failing with:
"invalid or unsupported Perl syntax: (?!"
Fixed by reordering groups so Dependencies (order: 3) comes before Maintenance (order: 4). Since GoReleaser matches commits against groups in order and stops at the first match, dependency commits (chore(deps): or chore(dependencies):) will match the Dependencies group before reaching Maintenance.
Related Issues
Resolves #[issue_number]