fix: autolabel scoped conventional commit titles#455
Open
Conversation
Release-drafter autolabeler required type prefixes immediately followed by a colon, so titles like chore(deps): from Mintmaker never received the chore label and the shared ack workflow failed required-label checks. Restore optional backport-style [tag] prefixes for feat/fix/chore and allow an optional (scope) before the colon. Align breaking detection with the same bracket prefix pattern.
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.
Problem
Many open PRs on
ansible-automation-platform/ansible-devtools-containerfail the shared ack workflow (ansible/team-devtools/.github/workflows/ack.yml) with:Example failed job log (PR 1052):
release-drafter/autolabelerruns, thengithub-action-required-labelsfinds no matching label.Mintmaker and similar bots open titles like
chore(deps): update …. The autolabeler only matchedchore:(no scope), sochore(deps):never received thechorelabel.Change
(scope)before:forfeat,fix, andchore|build|ci|test|style.[…]backport-style prefixes for those types (and breaking) so patchback titles still autolabel.After merge
Re-run or push an empty commit on affected
ansible-devtools-containerPRs sopull_request_targetpicks up the updated_extendsconfig frommain(no container repo change required for ack).Konflux
Several PRs also show Konflux / Conforma failures; those need triage in Konflux UI (not visible from public CI logs here); fixing ack unblocks the GitHub-side gate only.