-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update release notes template (#9577)
- feat / fixes category per binaries - breaking changes and perf category - restrict summary to max 60 days / max 100 PRs, add full diff and contributors
- Loading branch information
Showing
1 changed file
with
56 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,66 @@ | ||
{ | ||
"categories": [ | ||
{ | ||
"title": "## Features", | ||
"labels": ["T-feature"] | ||
"title": "## Breaking changes", | ||
"labels": ["T-likely-breaking "] | ||
}, | ||
{ | ||
"title": "## Fixes", | ||
"labels": ["T-bug", "T-fix"] | ||
"title": "## Anvil Features", | ||
"labels": ["C-anvil", "T-feature"], | ||
"exhaustive": true, | ||
"exhaustive_rules": false | ||
}, | ||
{ | ||
"title": "## Anvil Fixes", | ||
"labels": ["C-anvil", "T-bug"], | ||
"exhaustive": true, | ||
"exhaustive_rules": false | ||
}, | ||
{ | ||
"title": "## Cast Features", | ||
"labels": ["C-cast", "T-feature"], | ||
"exhaustive": true, | ||
"exhaustive_rules": false | ||
}, | ||
{ | ||
"title": "## Cast Fixes", | ||
"labels": ["C-cast", "T-bug"], | ||
"exhaustive": true, | ||
"exhaustive_rules": false | ||
}, | ||
{ | ||
"title": "## Chisel Features", | ||
"labels": ["C-chisel", "T-feature"], | ||
"exhaustive": true, | ||
"exhaustive_rules": false | ||
}, | ||
{ | ||
"title": "## Chisel Fixes", | ||
"labels": ["C-chisel", "T-bug"], | ||
"exhaustive": true, | ||
"exhaustive_rules": false | ||
}, | ||
{ | ||
"title": "## Forge Features", | ||
"labels": ["C-forge", "T-feature"], | ||
"exhaustive": true, | ||
"exhaustive_rules": false | ||
}, | ||
{ | ||
"title": "## Forge Fixes", | ||
"labels": ["C-forge", "T-bug"], | ||
"exhaustive": true, | ||
"exhaustive_rules": false | ||
}, | ||
{ | ||
"title": "## Performance improvements", | ||
"labels": ["T-perf"] | ||
} | ||
], | ||
"ignore_labels": ["L-ignore"], | ||
"template": "${{CHANGELOG}}\n## Other\n\n${{UNCATEGORIZED}}", | ||
"template": "${{CHANGELOG}}\n## Other\n\n${{UNCATEGORIZED}}\n## Full diff:\n\n ${{RELEASE_DIFF}}\n## Contributors:\n\n${{CONTRIBUTORS}}", | ||
"pr_template": "- ${{TITLE}} (#${{NUMBER}})", | ||
"empty_template": "- No changes" | ||
"empty_template": "- No changes", | ||
"max_pull_requests": 100, | ||
"max_back_track_time_days": 60 | ||
} |