Skip to content

Commit

Permalink
build: exclude dependabot from contributor list
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Dec 6, 2023
1 parent 49e7ac4 commit 447a20f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/scripts/update_contributors
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ this_script=$(perl -MFile::Spec -e 'print File::Spec->abs2rel(@ARGV)' "$0" "${ro
# Lists contributors.
list_contributors() {
local contributors
contributors="$(git log | git shortlog -sne | cut -f 2 | sort | grep -v '^github-actions' | grep -v '^stdlib-bot')"
contributors="$(git log | git shortlog -sne | cut -f 2 | sort | grep -v '^github-actions' | grep -v '^stdlib-bot' | grep -v '^dependabot')"
echo "${contributors}"
}

Expand Down

0 comments on commit 447a20f

Please sign in to comment.