Skip to content

Commit

Permalink
chore(renovate): real json5 (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
hrzlgnm authored Oct 17, 2024
1 parent ce02486 commit 431bd8a
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,41 +1,42 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automergeType": "pr",
"patch": {
"automerge": true
$schema: "https://docs.renovatebot.com/renovate-schema.json",
automergeType: "pr",
patch: {
automerge: true
},
"minor": {
"automerge": true
minor: {
automerge: true
},
"extends": [
extends: [
"config:best-practices",
":dependencyDashboard",
":enableVulnerabilityAlerts",
":rebaseStalePrs",
":semanticCommits",
":semanticPrefixChore",
":separateMajorReleases",
":prImmediately"
":prImmediately",
],
"prConcurrentLimit": 0,
"lockFileMaintenance": {
"enabled": true
prConcurrentLimit: 0,
lockFileMaintenance: {
enabled: true
},
"customManagers": [
customManagers: [
{
"matchStringsStrategy": "any",
"customType": "regex",
"fileMatch": [
matchStringsStrategy: "any",
customType: "regex",
fileMatch: [
"^\\.github/workflows/.*\\.yml$"
],
"matchStrings": [
matchStrings: [
"tool:\\s*(?<depName>[a-zA-Z0-9_-]+)@(?<currentValue>[0-9\\.]+)"
],
"depTypeTemplate": "build-dependencies",
"datasourceTemplate": "crate",
depTypeTemplate: "build-dependencies",
datasourceTemplate: "crate",
// In cargo versioning, "1.2.3" doesn't mean "exactly 1.2.3" but rather ">=1.2.3 <2.0.0".
// We on the other hand do want to treat versions as fixed - so we change versioning strategy.
"versioningTemplate": "semver"
versioningTemplate: "semver"
}
]
}

0 comments on commit 431bd8a

Please sign in to comment.