-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: rjdbcm <[email protected]>
- Loading branch information
Showing
3 changed files
with
48 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## What's Changed | ||
{% for type_, commits in release["elements"] | dictsort %} | ||
{% include 'parsed_commit_heading.j2' %} | ||
{%- if type_ != "unknown" %} | ||
{% for commit in commits %} | ||
* {{ commit.descriptions[0] }} by {{commit.commit.author.name}} in [`{{ commit.short_hash }}`]({{ commit.hexsha | commit_hash_url }}) | ||
{%- endfor %}{% endif %}{% endfor %} |
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,39 @@ | ||
{%- if type_ in [':bug:', 'BUG', 'fix'] %} | ||
### :bug: Fixed Bugs | ||
{%- elif type_ in [':memo:', 'DOC', 'docs'] %} | ||
### :memo: Updated Documentation | ||
{%- elif type_ in [':sparkles:', 'FEAT', 'feat'] %} | ||
### :sparkles: Implemented Features | ||
{%- elif type_ in [':zap:', 'BENCH', 'perf'] %} | ||
### :sparkles: Improved Performance | ||
{%- elif type_ in [':construction_worker:', 'BLD', 'ci'] %} | ||
### :construction_worker: Updated Continuous Integration | ||
{%- elif type_ in [':ambulance:'] %} | ||
### :ambulance: Hotfixed Issues | ||
{%- elif type_ in [':fire:'] %} | ||
### :fire: Deleted Code or Files | ||
{%- elif type_ in [':pencil2:'] %} | ||
### :pencil2: Corrected Typos | ||
{%- elif type_ in [':pushpin:'] %} | ||
### :pushpin: Pinned Dependencies | ||
{%- elif type_ in [':arrow_up:'] %} | ||
### :arrow_up: Upgraded Dependencies | ||
{%- elif type_ in [':arrow_down:'] %} | ||
### :arrow_down: Downgraded Dependencies | ||
{%- elif type_ in [':heavy_plus_sign:'] %} | ||
### :heavy_plus_sign: Added Dependencies | ||
{%- elif type_ in [':heavy_minus_sign:'] %} | ||
### :heavy_minus_sign: Removed Dependencies | ||
{%- elif type_ in [':children_crossing:'] %} | ||
### :children_crossing: Improved Usability | ||
{%- elif type_ in [':rotating_light:'] %} | ||
### :rotating_light: Ran Linters | ||
{%- elif type_ in [':hammer:'] %} | ||
### :hammer: Updated Scripts | ||
{%- elif type_ in [':wrench:'] %} | ||
### :hammer: Updated Configuration | ||
{%- elif type_ in [':wastebasket:'] %} | ||
### :wastebasket: Deprecated Code | ||
{%- else %} | ||
### {{ type_ | capitalize }} | ||
{% endif %} |