-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: autoupdate JQ info intended to seed default values
- Loading branch information
1 parent
6752b15
commit 52856e7
Showing
3 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"jq": { | ||
"renovate_datasource": "github-tags", | ||
"renovate_depname": "jqlang/jq", | ||
"renovate_versioning": "regex:^jq-(?<major>\d+)(\.(?<minor>\d+))?(\.(?<patch>\d+))?$", | ||
"version": "jq-1.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:base"], | ||
"labels": ["dependencies"] | ||
"labels": ["dependencies"], | ||
|
||
"packageRules": [ | ||
{ | ||
"enabled": true, | ||
"matchManagers": ["regex"], | ||
"matchUpdateTypes": ["patch", "minor"], | ||
"automerge": true | ||
} | ||
], | ||
"regexManagers": [ | ||
{ | ||
"fileMatch": ["renovate-regex.json$"], | ||
"matchStrings": [ | ||
"\"renovate_datasource\": \"(?<datasource>.*?)\",\\s \"renovate_depname\": \"(?<depName>.*?)\",\\s( \"renovate_versioning\": \"(?<versioning>.*?)\",\\s)?( \"sha256\": \"(?<currentDigest>.*?)\",\\s)? \"version\": \"(?<currentValue>.*?)\"" | ||
], | ||
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver-coerced{{/if}}" | ||
} | ||
], | ||
"reviewers": ["@chickenandpork"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
docs/repositories.md | ||
docs/rules.md | ||
docs/toolchain.md | ||
# whitespsce matters: a regex is used to parse and automatically update this json | ||
.github/renovate-regex.json |