Files
truecharts/.github/renovate/kinds/githubactions.json5
T

16 lines
608 B
JSON

{
"$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-",
},
}