Skip to content

Commit

Permalink
Remove Dependabot and Add groups to renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjsturge committed Aug 29, 2024
1 parent 33619ae commit 39e03cd
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 48 deletions.
47 changes: 0 additions & 47 deletions .github/dependabot.yml

This file was deleted.

29 changes: 28 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,32 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
],
"packageRules": [
{
"matchManagers": ["gomod"],
"matchPaths": ["**/go.mod"],
"groupName": "golang-dependencies",
"schedule": ["before 6am on every day"]
},
{
"matchManagers": ["dockerfile"],
"matchPaths": ["**/Dockerfile"],
"groupName": "docker-dependencies",
"schedule": ["before 6am on every day"]
},
{
"matchManagers": ["github-actions"],
"matchPaths": [".github/workflows/**.yml"],
"groupName": "github-actions-dependencies",
"schedule": ["before 6am on every day"]
},
{
"matchManagers": ["npm"],
"matchPaths": ["/e2e/**/package.json"],
"groupName": "playwright-dependencies",
"schedule": ["before 6am on every day"]
}
],
"baseBranches": ["dev"]
}

0 comments on commit 39e03cd

Please sign in to comment.