chore(ci): impact-weighted prefixes for dependabot commits#55
Merged
Conversation
Production npm deps and Docker base bumps now emit fix(deps): and fix(docker):, which release-please picks up as patch bumps. Dev deps and GitHub Actions bumps stay as chore() and remain silent. Closes the gap where weekly runtime-dep bumps silently changed the shipped artifact without producing a version, a tag, or a CHANGELOG entry.
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
Routes Dependabot's
commit-message.prefixso production npm deps and Docker base bumps emitfix(deps):/fix(docker):(patch-bump via release-please), while dev deps and GitHub Actions bumps stay onchore(...)and remain silent.Closes the silent-shipped-change gap: today every Dependabot PR lands as
chore(...), so weekly runtime-dep bumps and base-image bumps change the published artifact without producing a version, a tag, or a CHANGELOG entry. Going forward, the artifact-affecting subset triggers a patch bump that release-please batches into a single release PR.Note: the CI block stays
chore(ci); workflow files don't ship to users. The dev-deps split is wired via Dependabot'sprefix-developmentkey, which is supported on npm.