Skip to content

Commit

Permalink
chore(.github/renovate.json5): fix customManagers for mise versions (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
risu729 authored Nov 8, 2024
1 parent 9fb2f18 commit a0b521e
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -82,21 +82,26 @@
},
{
customType: "regex",
description: "Updates mise versions in mise.toml and GitHub Actions",
fileMatch: [
"^mise\\.toml$",
"^wsl/\\.config/mise/config\\.toml$",
"^\\.github/workflows/.+\\.yml$",
],
description: "Updates min_version in mise config",
fileMatch: ["^mise\\.toml$", "^wsl/\\.config/mise/config\\.toml$"],
datasourceTemplate: "github-releases",
depNameTemplate: "mise",
packageNameTemplate: "jdx/mise",
versioningTemplate: "semver",
matchStrings: [
// prettier-ignore
"min_version *= *\"(?<currentValue>.+?)\"",
"min_version = \"(?<currentValue>.+)\"",
],
},
{
customType: "regex",
description: "Updates mise versions in GitHub Actions",
fileMatch: ["^\\.github/workflows/.+\\.yml$"],
datasourceTemplate: "github-releases",
depNameTemplate: "mise",
packageNameTemplate: "jdx/mise",
matchStrings: [
// prettier-ignore
"version *: *(?<currentValue>.+?)",
"version: (?<currentValue>.+)",
],
},
{
Expand Down

0 comments on commit a0b521e

Please sign in to comment.