Skip to content

Commit

Permalink
ci: create renovate.json5
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackDark authored Oct 31, 2024
1 parent 865d659 commit f50fac1
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"config:recommended",
"customManagers:githubActionsVersions",
"schedule:monthly",
":prConcurrentLimitNone",
":prHourlyLimitNone",
":pinVersions",
],
// remove examples from ignore path
ignorePaths: [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/__tests__/**",
"**/test/**",
"**/tests/**",
"**/__fixtures__/**",
],
labels: ["dependencies"],
packageRules: [
{
matchUpdateTypes: ["minor", "patch", "pin"],
automerge: true,
addLabels: ["automerge"],
},
{
groupName: "devDependencies (non-major)",
matchDepTypes: ["devDependencies"],
matchUpdateTypes: ["patch", "minor"],
},
{
groupName: "dependencies (non-major)",
matchDepTypes: ["dependencies"],
matchUpdateTypes: ["patch", "minor"],
},
{
matchDatasources: ["docker"],
matchUpdateTypes: ["minor", "patch"],
groupName: "all docker updates (without major)",
groupSlug: "all-docker",
},
],
}

0 comments on commit f50fac1

Please sign in to comment.