Skip to content

Commit

Permalink
Merge pull request #719 from nextcloud/chore/renovate
Browse files Browse the repository at this point in the history
chore: migrate from dependabot to renovate
  • Loading branch information
st3iny authored May 21, 2024
2 parents f0ac653 + d68ae98 commit daa86f7
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 30 deletions.
30 changes: 0 additions & 30 deletions .github/dependabot.yml

This file was deleted.

91 changes: 91 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"helpers:pinGitHubActionDigests",
":dependencyDashboard",
":semanticCommits",
":gitSignOff"
],
"timezone": "Europe/Berlin",
"schedule": [
"before 5am on tuesday"
],
"labels": [
"dependencies",
"3. to review"
],
"commitMessageAction": "Bump",
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "from {{currentVersion}} to {{#if isPinDigest}}{{{newDigestShort}}}{{else}}{{#if isMajor}}{{prettyNewMajor}}{{else}}{{#if isSingleVersion}}{{prettyNewVersion}}{{else}}{{#if newValue}}{{{newValue}}}{{else}}{{{newDigestShort}}}{{/if}}{{/if}}{{/if}}{{/if}}",
"rangeStrategy": "bump",
"rebaseWhen": "conflicted",
"ignoreUnstable": false,
"baseBranches": [
"main"
],
"enabledManagers": [
"github-actions",
"npm"
],
"ignoreDeps": [
"node",
"npm",
"postcss-loader"
],
"packageRules": [
{
"description": "Request JavaScript reviews",
"matchManagers": ["npm"],
"reviewers": [
"st3iny",
"ChristophWurst"
]
},
{
"description": "Bump Github actions monthly and request reviews",
"matchManagers": ["github-actions"],
"extends": ["schedule:monthly"],
"reviewers": [
"st3iny",
"ChristophWurst"
]
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true,
"labels": [
"dependencies",
"4. to release"
],
"reviewers": []
},
{
"matchBaseBranches": ["main"],
"matchDepTypes": ["devDependencies"],
"extends": ["schedule:monthly"]
},
{
"groupName": "Jest family",
"matchPackageNames": [
"jest",
"jest-environment-jsdom",
"babel-jest",
"@vue/vue2-jest",
"@types/jest"
],
"automerge": true
}
],
"vulnerabilityAlerts": {
"enabled": true,
"semanticCommitType": "fix",
"schedule": "before 7am every weekday",
"dependencyDashboardApproval": false,
"commitMessageSuffix": ""
},
"osvVulnerabilityAlerts": true
}

0 comments on commit daa86f7

Please sign in to comment.