Generate Sponsors README #8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Generate Sponsors README | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: 0 0 1 */3 * | |
| permissions: | |
| contents: write | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout ποΈ | |
| uses: actions/checkout@v2 | |
| - name: Setup Git Config | |
| run: | | |
| git config --global user.name 'github-actions[bot]' | |
| git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
| - name: Generate Sponsors π | |
| uses: JamesIves/github-sponsors-readme-action@v1 | |
| with: | |
| token: ${{ secrets.PAT }} | |
| file: 'README.md' | |
| - name: Deploy to GitHub Pages π | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: master | |
| folder: '.' |