some minor renovate tweaks for pin merging
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
],
|
||||
"branchPrefix": "astro-",
|
||||
"enabled": true, // Enable updates for website dependencies
|
||||
"updateTypes": ["major", "minor", "patch"], // Allow updates for all version types
|
||||
"updateTypes": ["major", "minor", "patch", "digest", "pin", "lockfile"], // Allow updates for all version types
|
||||
"ignore": [
|
||||
// Specify any dependencies or versions to ignore
|
||||
],
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
],
|
||||
"branchPrefix": "docker-",
|
||||
"enabled": true, // Enable Docker image updates
|
||||
"updateTypes": ["major", "minor", "patch", "digest"], // Allow updates for all version types
|
||||
"updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types
|
||||
"semanticCommitScope": "container",
|
||||
"ignore": [
|
||||
"talconfig.yaml" // Exclude any file named talconfig.yaml
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"\\.github/workflows/.*\\.ya?ml\\.j2$" // Matches Jinja2 templated workflow files
|
||||
],
|
||||
"enabled": true, // Enable GitHub Actions updates
|
||||
"updateTypes": ["major", "minor", "patch", "digest"], // Allow updates for all version types
|
||||
"updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types
|
||||
"semanticCommitScope": "github-action",
|
||||
"ignore": [
|
||||
// Specify any actions or workflows to ignore
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"go\\.sum$" // Matches Go sum files
|
||||
],
|
||||
"enabled": true, // Enable Go module updates
|
||||
"updateTypes": ["major", "minor", "patch", "digest"], // Allow updates for all version types
|
||||
"updateTypes": ["major", "minor", "patch", "digest", "pin", "lockfile"], // Allow updates for all version types
|
||||
"ignore": [
|
||||
// Specify any modules or versions to ignore
|
||||
],
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"(^|/)charts/.+\\.ya?ml(?:\\.j2)?$",
|
||||
],
|
||||
"enabled": true, // Enable image reference updates in values.yaml
|
||||
"updateTypes": ["major", "minor", "patch", "digest"], // Allow updates for all version types
|
||||
"updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types
|
||||
"semanticCommitScope": "container"
|
||||
},
|
||||
"branchPrefix": "helm-values-",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"matchDatasources": ["docker"],
|
||||
"automerge": true,
|
||||
"automergeType": "pr",
|
||||
"matchUpdateTypes": ["digest", "patch", "minor"],
|
||||
"matchUpdateTypes": ["digest", "patch", "minor", "digest", "pin"],
|
||||
"matchPackagePatterns": ["ghcr.io/bjw-s", "ghcr.io/onedr0p", "tccr.io/tccr/.*", "tccr.io/tccrbase/.*" ],
|
||||
"branchPrefix": "docker-automerge-"
|
||||
},
|
||||
@@ -15,7 +15,7 @@
|
||||
"matchDatasources": ["helm-values"],
|
||||
"automerge": true,
|
||||
"automergeType": "pr",
|
||||
"matchUpdateTypes": ["digest", "patch", "minor"],
|
||||
"matchUpdateTypes": ["digest", "patch", "minor", "digest", "pin"],
|
||||
"matchPackagePatterns": ["ghcr.io/bjw-s", "ghcr.io/onedr0p", "tccr.io/tccr/.*", "tccr.io/tccrbase/.*" ],
|
||||
"branchPrefix": "helm-values-automerge-"
|
||||
},
|
||||
@@ -24,7 +24,7 @@
|
||||
"matchDatasources": ["helm"], // Use 'helm' datasource to match Helm charts
|
||||
"automerge": true,
|
||||
"automergeType": "pr",
|
||||
"matchUpdateTypes": ["digest", "patch", "minor"], // Specify the types of updates to automate
|
||||
"matchUpdateTypes": ["digest", "patch", "minor", "digest", "pin"], // Specify the types of updates to automate
|
||||
"matchPackagePatterns": ["tccr.io/truecharts/.*"], // Matches all OCI Helm charts under tccr.io/truecharts
|
||||
"branchPrefix": "helm-automerge-"
|
||||
},
|
||||
@@ -34,7 +34,7 @@
|
||||
"matchDatasources": ["github-tags"],
|
||||
"automerge": true,
|
||||
"automergeType": "pr",
|
||||
"matchUpdateTypes": ["minor", "patch"],
|
||||
"matchUpdateTypes": ["minor", "patch", "digest", "pin"],
|
||||
"branchPrefix": "github-automerge-"
|
||||
}
|
||||
]
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"packageRules": [
|
||||
{
|
||||
matchUpdateTypes: ["lockfile"],
|
||||
automerge: true
|
||||
}
|
||||
],
|
||||
"ignore": [
|
||||
// Add any paths or patterns to ignore specific digest updates, if necessary
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"packageRules": [
|
||||
{
|
||||
matchUpdateTypes: ["pin"],
|
||||
automerge: true
|
||||
}
|
||||
],
|
||||
"ignore": [
|
||||
// Add any paths or patterns to ignore specific digest updates, if necessary
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user