Skip to content

Commit

Permalink
chore: ignore auto update changelog commits in changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Feb 18, 2024
1 parent 2dc310f commit 50f45c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions templates/CHANGELOG.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ with commit parsing of [angular commits](https://github.com/angular/angular.js/b
{% endif%}
{% for commit in commits %}
{% if "dependabot" in commit.message.rstrip() %}
{% elif "automatically updating changelog" in commit.message.rstrip() %}
{% elif type_ != "unknown" %}
{% set msg = commit.message.rstrip() %}
{% set msg_no_ID = msg[msg.index(':')+2:] %}
Expand Down Expand Up @@ -62,6 +63,7 @@ with commit parsing of [angular commits](https://github.com/angular/angular.js/b
{% endif%}
{% for commit in commits %}
{% if "dependabot" in commit.message.rstrip() %}
{% elif "automatically updating changelog" in commit.message.rstrip() %}
{% elif type_ != "unknown" %}
{% set msg = commit.message.rstrip() %}
{% set msg_no_ID = msg[msg.index(':')+2:] %}
Expand Down

0 comments on commit 50f45c9

Please sign in to comment.