diff --git a/.github/workflows/update-contributors.yml b/.github/workflows/update-contributors.yml deleted file mode 100644 index d434ea1d4b..0000000000 --- a/.github/workflows/update-contributors.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Update contributors - -on: - push: - branches: - - main - - testing - pull_request: - branches: - - main - - testing - workflow_dispatch: - -jobs: - update_list_job: - runs-on: ubuntu-latest - permissions: - contents: write - name: Update contributors - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - run: git checkout HEAD - - - run: bash -e output_contributors.sh - name: Run Shell Script - id: shell_script_run - - - uses: stefanzweifel/git-auto-commit-action@v5 - name: Commit changes - with: - commit_message: Update contributors - commit_user_name: GitHub Actions - commit_user_email: github-actions@github.com - commit_author: GitHub Actions diff --git a/CONTRIBUTORS.tsv b/CONTRIBUTORS.tsv deleted file mode 100644 index 6483372ec3..0000000000 --- a/CONTRIBUTORS.tsv +++ /dev/null @@ -1,55 +0,0 @@ -Author Email -Nih0nium <121554411+Nih0nium at users dot noreply dot github dot com> -ctpk <125669604+ctpk at users dot noreply dot github dot com> -arbyste <144075975+arbyste at users dot noreply dot github dot com> -Jake <148171160+jbukl at users dot noreply dot github dot com> -starxeras <149911531+starxeras at users dot noreply dot github dot com> -Austin Siew <17107540+Aquafina-water-bottle at users dot noreply dot github dot com> -Pierce James Morris <17671699+piercemorris at users dot noreply dot github dot com> -Thermospore <35350819+Thermospore at users dot noreply dot github dot com> -Genthus <43189900+Genthus at users dot noreply dot github dot com> -Cashew <52880648+Scrub1492 at users dot noreply dot github dot com> -archiif <60074051+archiif at users dot noreply dot github dot com> -Kuuuube <61125188+Kuuuube at users dot noreply dot github dot com> -Stephen Kraus <8003332+stephenmk at users dot noreply dot github dot com> -praschke <91733887+praschke at users dot noreply dot github dot com> -Timm <96317759+Timm04 at users dot noreply dot github dot com> -Alexei Yatskov -Danny -Shadowlauch -The Man -Alex Yatskov -Gareth Parker -Dan Frei -David Gisser -Darius Jahandarie -dequis -Ewan Fox -forsakeninfinity -guidocella -xy2_ -ispedals -jarmanso7 -Jordi Armangué -Klemen Košir -Musee Ullah -GitHub -notaz -oakkitten -odehjoseph -r00ster -Roderic Day -marv -sabs -siikamiika -Scott Noyes -soriac -starxeras -StefanVukovic99 -praschke -stephenmk -Ren Tatsumoto -toasted-nutbread -Cashew -Allan Wirth -Yoitsumi diff --git a/output_contributors.sh b/output_contributors.sh deleted file mode 100755 index 9bad754267..0000000000 --- a/output_contributors.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -set -euo pipefail - -readonly tab=$'\t' -readonly filename=CONTRIBUTORS.tsv - -sort_output() { - sort --stable --unique --field-separator="$tab" --key=2 -} - -strip() { - sed \ - -e '/\[bot\]/Id' \ - -e '/github *actions/Id' \ - -e '/^ *$/d' \ - -e 's/@/ at /g' \ - -e 's/\./ dot /g' -} - -main() { - local -r old_data=$(cat -- "$filename" 2>/dev/null | sed '1d') - local -r new_data=$(git log --pretty="%an${tab}<%ae>%n%cn${tab}<%ce>") - { - echo "Author${tab}Email" - { - echo "$old_data" - echo "$new_data" - } | strip | sort_output - } > "$filename" -} - -main