From 39db2e9c219f05bd2919f28d88a7168ba7bebc9c Mon Sep 17 00:00:00 2001 From: ayoung19 Date: Wed, 9 Oct 2024 02:44:56 -0700 Subject: [PATCH] chore: add github action for updating contributors --- .github/workflows/contributors.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/contributors.yml diff --git a/.github/workflows/contributors.yml b/.github/workflows/contributors.yml new file mode 100644 index 0000000..c565743 --- /dev/null +++ b/.github/workflows/contributors.yml @@ -0,0 +1,19 @@ +name: Update Contributors + +on: + push: + branches: + - main + +jobs: + update-contributors: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + - uses: akhilmhdh/contributors-readme-action@v2.3.10 + with: + commit_message: "docs: update contributors" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}