Skip to content

Commit

Permalink
chore: changed renovate config to be static instead of shared
Browse files Browse the repository at this point in the history
  • Loading branch information
youngcm2 committed Sep 6, 2024
1 parent e03fe56 commit 793bece
Showing 1 changed file with 36 additions and 2 deletions.
38 changes: 36 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,41 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>swimlane/renovate-config:swimlane-default.json5"
"schedule": ["every weekend"],
"extends": ["config:recommended"],
"rangeStrategy": "pin",
"reviewersFromCodeOwners": true,
"labels": ["dependencies"],
"vulnerabilityAlerts": {
"labels": ["security"]
},

"packageRules": [
{
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["patch", "minor"],
"semanticCommitType": "fix"
},
{
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["major"],
"semanticCommitType": "feat!"
},
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "devDependencies (non-major)",
"automerge": true
},
{
"matchDatasources": ["docker"],
"matchUpdateTypes": ["patch", "minor"],
"semanticCommitType": "fix"
},
{
"matchDatasources": ["docker"],
"matchUpdateTypes": ["major"],
"semanticCommitType": "feat!"
}
],
"semanticCommitScope": "",
"forkProcessing": "enabled"
Expand Down

0 comments on commit 793bece

Please sign in to comment.