-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change renovatebot rules to update dependencies
- Loading branch information
Leonardo Reis
committed
Jun 5, 2023
1 parent
565a252
commit 22fa194
Showing
3 changed files
with
44 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,32 @@ | ||
{ | ||
"onboarding": true, | ||
"onboardingConfig": { | ||
"extends": [ | ||
"config:base", ":semanticCommits" | ||
] | ||
}, | ||
"extends": [ | ||
"config:base" | ||
"config:base", | ||
":semanticCommits" | ||
], | ||
"postUpdateOptions": [ | ||
"gomodTidy" | ||
"gomodTidy", "gomodUpdateImportPaths" | ||
], | ||
"packageRules": [ | ||
{ | ||
"groupName": "all non-major dependencies", | ||
"groupSlug": "all-minor-patch", | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch", | ||
"digest" | ||
], | ||
"schedule": [ | ||
"before 8am on Monday" | ||
] | ||
} | ||
] | ||
} |