diff --git a/default.json b/default.json new file mode 100644 index 0000000..bb7f092 --- /dev/null +++ b/default.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>renovatebot/.github", ":dependencyDashboard"], + "prCreation": "immediate" +} diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 56334be..0000000 --- a/renovate.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>renovatebot/.github", ":dependencyDashboard"], - "prCreation": "immediate", - "packageRules": [ - { - "description": "Trigger breaking release for major updates", - "matchPackageNames": [ - "renovate/renovate", - "ghcr.io/renovatebot/renovate" - ], - "matchUpdateTypes": ["major"], - "commitMessagePrefix": "feat(deps)!", - "automergeType": "pr" - }, - { - "description": "Trigger feature release for minor updates", - "matchPackageNames": [ - "renovate/renovate", - "ghcr.io/renovatebot/renovate" - ], - "matchUpdateTypes": ["minor"], - "semanticCommitType": "feat", - "automergeType": "pr" - }, - { - "description": "Trigger fix release for patch updates", - "matchPackageNames": [ - "renovate/renovate", - "ghcr.io/renovatebot/renovate" - ], - "matchUpdateTypes": ["patch", "digest"], - "semanticCommitType": "fix", - "automergeType": "pr" - }, - { - "description": "Schedule digest updates daily", - "matchUpdateTypes": ["digest"], - "extends": ["schedule:daily"] - }, - { - "description": "Update runner references in readme", - "matchDepNames": ["renovate-runner"], - "matchFileNames": ["README.md"], - "additionalBranchPrefix": "docs-", - "automerge": false, - "dependencyDashboardApproval": false, - "semanticCommitType": "docs", - "separateMajorMinor": false - } - ] -}