Skip to content

Commit

Permalink
[Feat] auto generate contributor list by github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mistricky committed May 2, 2024
1 parent 6d0c0ae commit 7cabc1b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/contributor_list.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7cabc1b

Please sign in to comment.