Skip to content
Merged
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
5 changes: 4 additions & 1 deletion scripts/update-otel-deps.js
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,10 @@ function updateNpmWorkspacesDeps({ patterns, allowRangeBumpFor0x, dryRun }) {
}

// Summary/commit message.
let commitMsg = `chore(deps): update deps${matchStr}\n\n`;
// Note: using `feat` rather than `chore`, because if release-please is
// being used, it ignores `chore` conventional-commits when determining if
// a package needs a new release.
let commitMsg = `feat(deps): update deps${matchStr}\n\n`;
commitMsg +=
' ' +
Array.from(summaryStrs)
Expand Down
Loading