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
4 changes: 1 addition & 3 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,11 @@
// We'll leave major updates ungrouped though, as those likely need more individualized attention.
{
extends: [ 'helpers:pinGitHubActionDigests' ],
matchPackageNames: [ '!actions/**' ],
},
{
groupName: 'GitHub Actions minor version bumps',
matchDepTypes: [ 'action' ],
matchUpdateTypes: [ 'minor', 'patch', 'pin', 'digest' ],
matchPackageNames: [ '!actions/**' ],
matchUpdateTypes: [ 'minor', 'patch', 'pin', 'digest', 'pinDigest' ],

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Took me a bit to figure this one out; it seems pinDigest is needed to switch things from non-digest to digest?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

More that "pinDigest" is what renovate sets the type to when switching things from non-digest to digest. Leaving it out makes it not match the grouping rule, so each package would get separate PRs instead (unless grouped by some other rule).

schedule: [ '* 0-3 * * 1' ],
additionalReviewers: [ 'team:qualityops' ],
},
Expand Down
Loading