iac_modules/skills/release-branch-policy/references/ruleset.release-branches.json
Haitao Pan 4755198a9d chore(skills): add release-branch-policy skill and scripts
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-23 20:57:19 +08:00

18 lines
338 B
JSON

{
"name": "Release Branch Protection (release/*)",
"target": "branch",
"enforcement": "active",
"conditions": {
"ref_name": {
"include": ["refs/heads/release/*"],
"exclude": []
}
},
"rules": [
{ "type": "deletion" },
{ "type": "non_fast_forward" },
{ "type": "required_linear_history" }
]
}