-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configuration for changelog action
- Loading branch information
1 parent
1e66d19
commit d9b64b4
Showing
2 changed files
with
37 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"categories": [ | ||
{ | ||
"title": "## 🚀 Features", | ||
"labels": ["enhancement"], | ||
"empty_content": "No new features today 😢" | ||
}, | ||
{ | ||
"title": "## 🐛 Fixes", | ||
"labels": ["fix"], | ||
"empty_content": "🤔 No bugs at all?" | ||
}, | ||
{ | ||
"title": "## 🧰 CI/CD", | ||
"labels": ["ci/cd"] | ||
} | ||
|
||
], | ||
"ignore_labels": [ | ||
"ignore" | ||
], | ||
"sort": { | ||
"order": "ASC", | ||
"on_property": "mergedAt" | ||
}, | ||
"template": "#{{CHANGELOG}}\n\n<details>\n<summary>Uncategorized</summary>\n\n${{ '${{UNCATEGORIZED}}' }}\n</details>\n\n<details>\n<summary>Also merged but not included in notes</summary>\n\n#{{IGNORED}}\n</details>", | ||
"pr_template": "- #{{TITLE}} (PR: ##{{NUMBER}})", | ||
"empty_template": "Nothing here today", | ||
"trim_values": true, | ||
"max_tags_to_fetch": 200, | ||
"max_pull_requests": 200, | ||
"max_back_track_time_days": 365, | ||
"base_branches": [ "main" ] | ||
} |