-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
524329d
commit 7470734
Showing
3 changed files
with
79 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base", | ||
":disableDependencyDashboard", | ||
":automergeDigest", | ||
":automergePatch", | ||
":automergeMinor", | ||
":rebaseStalePrs", | ||
":semanticCommits", | ||
":semanticCommitScope(deps)", | ||
"helpers:pinGitHubActionDigests", | ||
":enablePreCommit" | ||
], | ||
"automergeType": "pr", | ||
"rebaseWhen": "behind-base-branch", | ||
"packageRules": [ | ||
{ | ||
"groupName": "github actions", | ||
"matchManagers": ["github-actions"], | ||
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest"], | ||
"automerge": true, | ||
"schedule": ["at any time"], | ||
"additionalBranchPrefix": "auto-" | ||
}, | ||
{ | ||
"groupName": "operator pip deps", | ||
"matchManagers": ["pip_requirements"], | ||
"matchUpdateTypes": ["minor", "patch", "pin", "digest"], | ||
"schedule": ["at any time"], | ||
"prPriority": 5, | ||
"additionalBranchPrefix": "auto-" | ||
}, | ||
{ | ||
"groupName": "operator pip deps", | ||
"matchManagers": ["pip_requirements"], | ||
"matchUpdateTypes": ["major"], | ||
"schedule": ["at any time"], | ||
"prPriority": 5 | ||
}, | ||
{ | ||
"groupName": "testing pip deps", | ||
"matchManagers": ["pip_requirements"], | ||
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest"], | ||
"automerge": true, | ||
"schedule": ["at any time"], | ||
"prPriority": 4, | ||
"additionalBranchPrefix": "auto-" | ||
}, | ||
{ | ||
"groupName": "testing deps", | ||
"matchFiles": ["tox.ini"], | ||
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest"], | ||
"automerge": true, | ||
"schedule": ["on monday"], | ||
"additionalBranchPrefix": "auto-" | ||
}, | ||
{ | ||
"groupName": "renovate packages", | ||
"matchSourceUrlPrefixes": ["https://github.com/renovatebot/"], | ||
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest"], | ||
"automerge": true, | ||
"schedule": ["at any time"], | ||
"additionalBranchPrefix": "auto-" | ||
}, | ||
{ | ||
"groupName": "pre-commit hooks", | ||
"matchManagers": ["pre-commit"], | ||
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest"], | ||
"automerge": true, | ||
"schedule": ["at any time"], | ||
"additionalBranchPrefix": "auto-" | ||
} | ||
] | ||
} |
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