Skip to content

Commit

Permalink
Automation
Browse files Browse the repository at this point in the history
  • Loading branch information
skyzyx committed Nov 23, 2024
1 parent 0c7f9d6 commit 5f9999f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 43 deletions.
42 changes: 0 additions & 42 deletions .github/workflows/osv-scanner.yml

This file was deleted.

21 changes: 21 additions & 0 deletions scripts/generate-contributors.sh
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"

0 comments on commit 5f9999f

Please sign in to comment.