Skip to content

Commit

Permalink
renovate qol improvements (#1285)
Browse files Browse the repository at this point in the history
This adds `go mod tidy` to renovate and permits update grouping to
reduce the noise/pain of renovate updates.

## Type of change

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [x] Other (security config, docs update, etc)

## Checklist before merging

- [x] Test, docs, adr added or updated as needed
- [x] [Contributor Guide
Steps](https://github.com/defenseunicorns/zarf/blob/main/CONTRIBUTING.md#developer-workflow)
followed
  • Loading branch information
jeff-mccoy authored Jan 29, 2023
1 parent 8301a15 commit 6471130
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": [
"config:base"
"config:base",
"group:allNonMajor"
],
"packageRules": [
{
Expand All @@ -13,16 +14,23 @@
"automergeType": "pr"
},
{
"matchDepTypes": ["devDependencies"],
"matchDepTypes": [
"devDependencies"
],
"automerge": true,
"automergeType": "pr"
}
],
"platformAutomerge": true,
"platformCommit": true,
"postUpdateOptions": [
"gomodTidy"
],
"regexManagers": [
{
"fileMatch": ["(^|/)zarf.yaml$"],
"fileMatch": [
"(^|/)zarf.yaml$"
],
"matchStringsStrategy": "recursive",
"matchStrings": [
"charts:(.|\n)*?(^\\s{4}[\\w:]+|\n$|^\\s{2}-)",
Expand Down

0 comments on commit 6471130

Please sign in to comment.