Spaces:
Runtime error
Runtime error
Merge pull request #79 from neon-mmd/contributors-list-automation-ci
Browse files
.github/workflows/contributors.yml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Contributors
|
2 |
+
on:
|
3 |
+
schedule:
|
4 |
+
- cron: '0 1 * * *' # At 01:00 on every day.
|
5 |
+
push:
|
6 |
+
branches:
|
7 |
+
- rolling
|
8 |
+
jobs:
|
9 |
+
contributors:
|
10 |
+
runs-on: ubuntu-latest
|
11 |
+
steps:
|
12 |
+
- uses: wow-actions/contributors-list@v1
|
13 |
+
with:
|
14 |
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
15 |
+
round: true
|
16 |
+
svgPath: ../../images/contributors_list.svg
|