Skip to content

Commit

Permalink
chore(deps): Migrate from Dependabot to renovate
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
  • Loading branch information
ChristophWurst committed Feb 22, 2023
1 parent 866621a commit 8ccdb7e
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 75 deletions.
39 changes: 0 additions & 39 deletions .github/dependabot.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/workflows/dependabot-approve-merge.yml

This file was deleted.

1 change: 1 addition & 0 deletions .nextcloudignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
/package.json
/package-lock.json
/.php-cs-fixer.dist.php
/renovate.json
/screenshots
.scrutinizer.yml
/src
Expand Down
60 changes: 60 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":semanticCommits",
":dependencyDashboard"
],
"timezone": "Europe/Vienna",
"schedule": [
"before 5am on thursday"
],
"reviewers": [
"@ChristophWurst"
],
"prConcurrentLimit": 1,
"labels": [
"dependencies"
],
"rangeStrategy": "bump",
"rebaseWhen": "conflicted",
"ignoreUnstable": false,
"baseBranches": [
"master"
],
"enabledManagers": [
"composer",
"npm"
],
"ignoreDeps": [
"node",
"npm"
],
"postUpgradeTasks": {
"commands": [
"npm ci",
"npm run build"
]
},
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
},
{
"enabled": false,
"matchBaseBranches": "/^stable(.)+/"
},
{
"matchBaseBranches": ["master"],
"matchDepTypes": ["devDependencies"],
"extends": ["schedule:monthly"]
}
],
"vulnerabilityAlerts": {
"enabled": true
}
}

0 comments on commit 8ccdb7e

Please sign in to comment.