-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
43 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
# see also ".mailmap" for how email addresses and names are deduplicated | ||
OUT="${1:-.}" | ||
{ | ||
# editorconfig-checker-disable | ||
cat <<- 'EOF' | ||
# File @generated by scripts/generate-contributors.sh. DO NOT EDIT. | ||
# This file lists all contributors to the repository. | ||
# See scripts/generate-contributors.sh to make modifications. | ||
EOF | ||
# editorconfig-checker-enable | ||
|
||
echo | ||
|
||
# shellcheck disable=2312 | ||
git log --format='%aN <%aE>' | LC_ALL=C.UTF-8 sort -uf | ||
|
||
} > "${OUT}/CONTRIBUTORS" | ||
cat "${OUT}/CONTRIBUTORS" |
Submodule dst2024
updated
4 files
+1 −1 | .github/workflows/pr-dep-review.yml | |
+1 −1 | .github/workflows/scorecard.yml | |
+1 −1 | .github/workflows/update-on-push.yml | |
+21 −0 | scripts/generate-contributors.sh |