GitHub: Add contributors.yml action (experimental)
This commit is contained in:
parent
750d4c5dcb
commit
0af3f60594
1 changed files with 22 additions and 0 deletions
22
.github/workflows/contributors.yml
vendored
Normal file
22
.github/workflows/contributors.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Contributors
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 1 * * 0' # At 01:00 on Sunday.
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
jobs:
|
||||
contributors:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: wow-actions/contributors-list@v1
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
svgPath: 'assets/static/img/contributors.svg'
|
||||
svgWidth: 800
|
||||
avatarSize: 35
|
||||
avatarMargin: 5
|
||||
affiliation: 'all'
|
||||
round: false
|
||||
sort: true
|
||||
commitMessage: 'CI: Update contributors.svg'
|
Loading…
Reference in a new issue