Skip to content

Commit

Permalink
chore: remove dependa-bot commits from changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Feb 6, 2024
1 parent 208dbd4 commit 44a322c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions templates/CHANGELOG.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ with commit parsing of [angular commits](https://github.com/angular/angular.js/b
{% else %}
### Other
{% endif%}
{% for commit in commits %}{% if type_ != "unknown" %}
{% for commit in commits %}
{% if "dependabot" in commit.message.rstrip() %}
{% elif type_ != "unknown" %}
{% set msg = commit.message.rstrip() %}
{% set msg_no_ID = msg[msg.index(':')+2:] %}
* {{ msg_no_ID }} ([`{{ commit.short_hash }}`]({{ commit.hexsha | commit_hash_url }}))
Expand Down Expand Up @@ -58,8 +60,9 @@ with commit parsing of [angular commits](https://github.com/angular/angular.js/b
{% else %}
### Other
{% endif%}

{% for commit in commits %}{% if type_ != "unknown" %}
{% for commit in commits %}
{% if "dependabot" in commit.message.rstrip() %}
{% elif type_ != "unknown" %}
{% set msg = commit.message.rstrip() %}
{% set msg_no_ID = msg[msg.index(':')+2:] %}
* {{ msg_no_ID }} ([`{{ commit.short_hash }}`]({{ commit.hexsha | commit_hash_url }}))
Expand Down

0 comments on commit 44a322c

Please sign in to comment.