Skip to content

Commit

Permalink
Merge pull request #724 from uselagoon/renbot
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood authored Dec 18, 2024
2 parents a084ddc + 27670ab commit f0aa735
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ jobs:
run: ah lint

artifacthub-changelog:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'automated-dependencies') }}
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
73 changes: 65 additions & 8 deletions renovate.json
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
}
]
}

0 comments on commit f0aa735

Please sign in to comment.