Files
truecharts/.github/renovate/kinds/githubactions.json5
T
2024-10-18 22:02:17 +02:00

16 lines
608 B
Plaintext

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
// GitHub Actions Renovate configuration for managing workflow updates
"github-actions": {
"fileMatch": [
"\\.github/workflows/.*\\.ya?ml$", // Matches all workflow YAML files
"\\.github/workflows/.*\\.ya?ml\\.j2$" // Matches Jinja2 templated workflow files
],
"enabled": true, // Enable GitHub Actions updates
"updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types
"semanticCommitScope": "github-action",
"branchPrefix": "renovate/githubactions-",
},
}