Skip to content

Commit

Permalink
[CI] Use workflow to generate contributors list
Browse files Browse the repository at this point in the history
  • Loading branch information
aicorein committed Dec 26, 2024
1 parent 416234b commit c4993b8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Generate contributors svg

on:
schedule:
- cron: '0 1 * * 0' # At 01:00 on Sunday.

push:
branches:
- main

jobs:
gen_contributors:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/contributors-list@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
round: true
svgPath: docs/source/_static/contributors.svg

0 comments on commit c4993b8

Please sign in to comment.