mirror of
https://github.com/mistricky/codesnap.nvim.git
synced 2024-12-26 19:36:29 +00:00
[Feat] auto generate contributor list by github actions
This commit is contained in:
parent
6d0c0ae0c0
commit
7cabc1b6e0
1 changed files with 19 additions and 0 deletions
19
.github/workflows/contributor_list.yml
vendored
Normal file
19
.github/workflows/contributor_list.yml
vendored
Normal file
|
@ -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
|
Loading…
Reference in a new issue