mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-18 09:52:35 +00:00
chore(release): merge main (0dcf445e41)
This commit is contained in:
commit
713049f1db
2 changed files with 26 additions and 9 deletions
33
.github/renovate.json
vendored
33
.github/renovate.json
vendored
|
|
@ -1,17 +1,30 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": ["github>renovatebot/.github", ":pinDependencies"],
|
||||
"extends": [
|
||||
"github>renovatebot/.github",
|
||||
":pinDependencies"
|
||||
],
|
||||
"packageRules": [
|
||||
{
|
||||
"description": "Automerge Renovate updates",
|
||||
"packageNames": ["renovate/renovate"],
|
||||
"updateTypes": ["major", "minor", "patch"],
|
||||
"semanticCommitType": "fix"
|
||||
"semanticCommitType": "fix",
|
||||
"matchPackageNames": [
|
||||
"renovate/renovate"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"major",
|
||||
"minor",
|
||||
"patch"
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Update references in markdown files weekly",
|
||||
"matchPaths": [".md"],
|
||||
"extends": ["schedule:weekly"],
|
||||
"matchPaths": [
|
||||
".md"
|
||||
],
|
||||
"extends": [
|
||||
"schedule:weekly"
|
||||
],
|
||||
"automerge": true,
|
||||
"stabilityDays": 0,
|
||||
"separateMajorMinor": false,
|
||||
|
|
@ -23,14 +36,18 @@
|
|||
],
|
||||
"regexManagers": [
|
||||
{
|
||||
"fileMatch": ["^src/docker\\.ts$"],
|
||||
"fileMatch": [
|
||||
"^src/docker\\.ts$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"// renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s+readonly\\s+tag\\s+=\\s+'(?<currentValue>.+?)';"
|
||||
],
|
||||
"versioningTemplate": "{{#if versioning}}{{versioning}}{{else}}semver{{/if}}"
|
||||
},
|
||||
{
|
||||
"fileMatch": ["^README\\.md$"],
|
||||
"fileMatch": [
|
||||
"^README\\.md$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"uses: renovatebot/github-action@(?<currentValue>[^\\s]+)"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
class Docker {
|
||||
readonly repository = 'renovate/renovate';
|
||||
// renovate: datasource=docker depName=renovate/renovate versioning=docker
|
||||
readonly tag = '32.100.4-slim';
|
||||
readonly tag = '32.102.2-slim';
|
||||
readonly tagSuffix = '-slim';
|
||||
|
||||
image(): string {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue