Skip to content

Commit

Permalink
Fix mozilla-services#4650, ignore Renovate commits in generate-commit…
Browse files Browse the repository at this point in the history
…-log script
  • Loading branch information
testeaxeax committed Sep 12, 2018
1 parent 596dc2a commit 2b40438
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/generate-commit-log
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ for line in log.splitlines():
parts = []

for message in messages:
if message.get("from") == "Renovate Bot <bot@renovateapp.com>":
continue
sub = message.get("subject", "")
if sub.startswith("[PATCH] "):
sub = sub[len("[PATCH] "):]
Expand Down

0 comments on commit 2b40438

Please sign in to comment.