From 7cabc1b6e08e7db3fb40a918009226ded59c71dd Mon Sep 17 00:00:00 2001 From: Mist Date: Thu, 2 May 2024 17:24:48 +0800 Subject: [PATCH] [Feat] auto generate contributor list by github actions --- .github/workflows/contributor_list.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/contributor_list.yml diff --git a/.github/workflows/contributor_list.yml b/.github/workflows/contributor_list.yml new file mode 100644 index 0000000..346ffe1 --- /dev/null +++ b/.github/workflows/contributor_list.yml @@ -0,0 +1,19 @@ +name: Auto Generate Contributor List + +on: + push: + branches: + main + +permissions: + contents: write + +jobs: + generate-contributor-list: + name: Auto generate contributor list + runs-on: ubuntu-latest + steps: + - uses: wow-actions/contributors-list@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + svgPath: CONTRIBUTORS.svg