2024-07-20 15:06:17 +02:00
|
|
|
name: Update Contributors
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update_contributors:
|
|
|
|
name: Update Contributors
|
|
|
|
runs-on: debian
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
ref: master
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Install just
|
|
|
|
run: |
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to ./bin
|
|
|
|
- name: Update Contributors
|
|
|
|
run: |
|
|
|
|
./bin/just contributors
|
2024-07-20 16:37:31 +02:00
|
|
|
if git diff --name-only | grep -q "^CONTRIBUTORS.md$"; then
|
2024-07-20 15:06:17 +02:00
|
|
|
git config user.name forgejo-actions
|
|
|
|
git config user.email forgejo-actions@noreply.localhost
|
|
|
|
git add CONTRIBUTORS.md
|
|
|
|
git commit -m "Update CONTRIBUTORS.md"
|
|
|
|
git push
|
|
|
|
else
|
|
|
|
echo "No changes to CONTRIBUTORS.md"
|
|
|
|
fi
|