Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions renovate-config-example.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"repositories": [
"fgm/envrun",
"fgm/untilMongod",
"fgm/container",
"fgm/drupal_redis_stats",
"fgm/izidic",
"fgm/pflagheaders"
],
"enabledManagers": ["gomod", "github-actions", "npm"],
"packageRules": [
{
"matchManagers": ["gomod"],
"groupName": "Go dependencies",
"groupSlug": "go-deps",
"updateTypes": ["minor", "patch"]
},
{
"matchManagers": ["github-actions"],
"groupName": "GitHub Actions",
"groupSlug": "github-actions"
},
{
"matchManagers": ["npm"],
"matchPaths": ["examples/**"],
"groupName": "npm dependencies",
"groupSlug": "npm-deps"
}
],
"repositoryRules": [
{
"matchRepositoryNames": ["fgm/pflagheaders"],
"schedule": ["before 3am on Monday"]
},
{
"matchRepositoryNames": ["fgm/envrun", "fgm/container"],
"schedule": ["before 3am on the first Saturday"]
},
{
"matchRepositoryNames": ["fgm/untilMongod"],
"schedule": ["before 3am on the 1st of the month"]
},
{
"matchRepositoryNames": ["fgm/drupal_redis_stats", "fgm/izidic"],
"schedule": ["before 3am on Monday"],
"enabledManagers": ["gomod"]
}
]
}
6 changes: 6 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>fgm/renovate-config"
]
}