-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #724 from uselagoon/renbot
- Loading branch information
Showing
2 changed files
with
66 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,66 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended" | ||
], | ||
"dependencyDashboard": true, | ||
"platformCommit": "disabled", | ||
"prHourlyLimit": 0 | ||
} | ||
"$schema":"https://docs.renovatebot.com/renovate-schema.json", | ||
"extends":[ | ||
"mergeConfidence:all-badges", | ||
"config:recommended", | ||
":disableRateLimiting", | ||
"helpers:pinGitHubActionDigests" | ||
], | ||
"dependencyDashboard":true, | ||
"platformCommit":"disabled", | ||
"prHourlyLimit":0, | ||
"labels":[ | ||
"automated-dependencies" | ||
], | ||
"packageRules":[ | ||
{ | ||
"matchDatasources":[ | ||
"docker" | ||
], | ||
"matchPackageNames":[ | ||
"ghcr.io/uselagoon/**", | ||
"uselagoon/**" | ||
], | ||
"groupName":"Lagoon service images" | ||
}, | ||
{ | ||
"matchManagers":[ | ||
"github-actions" | ||
], | ||
"groupName":"GitHub actions monthly minor/patch", | ||
"matchUpdateTypes":[ | ||
"minor", | ||
"patch", | ||
"digest" | ||
], | ||
"schedule":[ | ||
"on the first day of the month" | ||
], | ||
"automerge":true, | ||
"automergeType":"pr" | ||
}, | ||
{ | ||
"matchManagers":[ | ||
"github-actions" | ||
], | ||
"groupName":"GitHub actions major", | ||
"matchUpdateTypes":[ | ||
"major" | ||
], | ||
"automerge":true, | ||
"automergeType":"pr" | ||
}, | ||
{ | ||
"matchDatasources":[ | ||
"docker" | ||
], | ||
"draftPR":true | ||
}, | ||
{ | ||
"matchDatasources":[ | ||
"helm" | ||
], | ||
"draftPR":true | ||
} | ||
] | ||
} |