mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-27 12:43:37 +00:00
chore(renovate): fix config
This commit is contained in:
parent
d4f5ed0b0b
commit
b025b6e415
1 changed files with 9 additions and 6 deletions
15
.github/renovate.json
vendored
15
.github/renovate.json
vendored
|
|
@ -31,7 +31,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "Don't require approval for renovate",
|
"description": "Don't require approval for renovate",
|
||||||
"matchDepNames": [
|
"matchPackageNames": [
|
||||||
"ghcr.io/renovatebot/renovate",
|
"ghcr.io/renovatebot/renovate",
|
||||||
"renovatebot/github-action"
|
"renovatebot/github-action"
|
||||||
],
|
],
|
||||||
|
|
@ -39,13 +39,13 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "Don't pin renovate updates",
|
"description": "Don't pin renovate updates",
|
||||||
"matchDepNames": ["ghcr.io/renovatebot/renovate"],
|
"matchPackageNames": ["ghcr.io/renovatebot/renovate"],
|
||||||
"matchFileNames": ["action.yml", "src/docker.ts"],
|
"matchFileNames": ["action.yml", "src/docker.ts"],
|
||||||
"pinDigests": false
|
"pinDigests": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "Use feat! semantic type for renovate major",
|
"description": "Use feat! semantic type for renovate major",
|
||||||
"matchDepNames": ["ghcr.io/renovatebot/renovate"],
|
"matchPackageNames": ["ghcr.io/renovatebot/renovate"],
|
||||||
"matchFileNames": ["action.yml", "src/docker.ts"],
|
"matchFileNames": ["action.yml", "src/docker.ts"],
|
||||||
"matchUpdateTypes": ["major"],
|
"matchUpdateTypes": ["major"],
|
||||||
"commitMessagePrefix": "feat(deps)!:",
|
"commitMessagePrefix": "feat(deps)!:",
|
||||||
|
|
@ -66,7 +66,8 @@
|
||||||
"customType": "regex",
|
"customType": "regex",
|
||||||
"fileMatch": ["^README\\.md$"],
|
"fileMatch": ["^README\\.md$"],
|
||||||
"matchStrings": ["renovate-version: (?<currentValue>[^\\s]+)"],
|
"matchStrings": ["renovate-version: (?<currentValue>[^\\s]+)"],
|
||||||
"depNameTemplate": "ghcr.io/renovatebot/renovate",
|
"depNameTemplate": "renovate",
|
||||||
|
"packageNameTemplate": "ghcr.io/renovatebot/renovate",
|
||||||
"datasourceTemplate": "docker"
|
"datasourceTemplate": "docker"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -74,7 +75,8 @@
|
||||||
"customType": "regex",
|
"customType": "regex",
|
||||||
"fileMatch": ["^action\\.yml$"],
|
"fileMatch": ["^action\\.yml$"],
|
||||||
"matchStrings": ["default: '(?<currentValue>[^\\s]+)' # renovate"],
|
"matchStrings": ["default: '(?<currentValue>[^\\s]+)' # renovate"],
|
||||||
"depNameTemplate": "ghcr.io/renovatebot/renovate",
|
"depNameTemplate": "renovate",
|
||||||
|
"packageNameTemplate": "ghcr.io/renovatebot/renovate",
|
||||||
"datasourceTemplate": "docker"
|
"datasourceTemplate": "docker"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -82,7 +84,8 @@
|
||||||
"customType": "regex",
|
"customType": "regex",
|
||||||
"fileMatch": ["^src/docker\\.ts$"],
|
"fileMatch": ["^src/docker\\.ts$"],
|
||||||
"matchStrings": ["version = '(?<currentValue>[^\\s]+)'; // renovate"],
|
"matchStrings": ["version = '(?<currentValue>[^\\s]+)'; // renovate"],
|
||||||
"depNameTemplate": "ghcr.io/renovatebot/renovate",
|
"depNameTemplate": "renovate",
|
||||||
|
"packageNameTemplate": "ghcr.io/renovatebot/renovate",
|
||||||
"datasourceTemplate": "docker"
|
"datasourceTemplate": "docker"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue