-
-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (29 loc) · 973 Bytes
/
sponsors.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Generate Sponsors README
on:
workflow_dispatch:
schedule:
- cron: 30 15 * * 0-6
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.PAT }}
file: 'README.md'
active-only: false
template: '<a href="https://github.com/{{{ login }}}"><img src="{{{ avatarUrl }}}" width="80px" alt="{{{ login }}}" /></a> '
# ⚠️ Note: You can use any deployment step here to automatically push the README
# changes back to your branch.
- name: Deploy README.md 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.PAT }}
branch: main
folder: '.'
commit-message: 'chore: [skip ci] update sponspors 💖'