16 lines
608 B
Plaintext
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-",
|
|
},
|
|
|
|
}
|