Skip to content

Commit

Permalink
Ignore "dependabot" from AUTHORS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zonuexe committed Dec 17, 2023
1 parent 942073a commit 2a52f97
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ AUTHORS.md: etc/git/AUTHORS.md.in .mailmap
@printf "Generating AUTHORS.md file..."
@test -d .git \
&& (cat $< > $@ \
&& git log --pretty=format:'- %aN' | \
cat etc/git/former-contributors - | LANG=C sort -u >> $@ \
&& git log --pretty=format:'- %aN' \
| cat etc/git/former-contributors - \
| grep -v dependabot \
| LANG=C sort -u >> $@ \
&& cat etc/git/AUTHORS2.md.in >> $@ \
&& printf "FINISHED\n" ; ) \
|| printf "FAILED (non-fatal)\n"
Expand Down

0 comments on commit 2a52f97

Please sign in to comment.