From 95831389c1c6238478d92ab25555d0d7623cdc75 Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Sun, 9 Feb 2025 15:45:03 +0100 Subject: [PATCH] Create update-contributors.yml --- .github/workflows/update-contributors.yml | 37 +++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/update-contributors.yml diff --git a/.github/workflows/update-contributors.yml b/.github/workflows/update-contributors.yml new file mode 100644 index 000000000..6248b6e07 --- /dev/null +++ b/.github/workflows/update-contributors.yml @@ -0,0 +1,37 @@ +name: community | contributors leaderboard + +on: + schedule: + - cron: "0 0 * * 1" # Runs every Monday + workflow_dispatch: # Allows manual trigger + +jobs: + update-contributors: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Generate Contributor List + run: | + echo "## 💫 Contributors" > CONTRIBUTORS.md + echo "" >> CONTRIBUTORS.md + echo "Thanks to our amazing contributors! 💖" >> CONTRIBUTORS.md + echo "" >> CONTRIBUTORS.md + echo '' >> CONTRIBUTORS.md + echo ' ' >> CONTRIBUTORS.md + echo '' >> CONTRIBUTORS.md + echo "" >> CONTRIBUTORS.md + echo "## 🏆 Top Contributors" >> CONTRIBUTORS.md + echo "" >> CONTRIBUTORS.md + echo "| Rank | Contributor | Contributions |" >> CONTRIBUTORS.md + echo "|------|------------|---------------|" >> CONTRIBUTORS.md + git shortlog -sne | sort -rn | head -10 | awk '{print "| "NR" | ["$2"](https://github.com/"$2") | "$1" Commits |"}' >> CONTRIBUTORS.md + + - name: Commit and Push Changes + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions@users.noreply.github.com" + git add CONTRIBUTORS.md + git commit -m "Update contributors list" + git push