name: Generate Sponsors README on: workflow_dispatch: schedule: - cron: 30 15 * * 0-6 jobs: deploy: runs-on: ubuntu-22.04 steps: - name: Checkout 🛎️ uses: actions/checkout@v4 - name: Generate Sponsors 💖 uses: JamesIves/github-sponsors-readme-action@v1 with: organization: true minimum: 4900 maximum: 5100 fallback: 'No bronze sponsors yet. Become a sponsor →' token: ${{ secrets.SPONSORS_README_ACTION_PERSONAL_ACCESS_TOKEN }} marker: 'bronze' template: ' ' file: 'README.md' - name: Generate Sponsors 💖 uses: JamesIves/github-sponsors-readme-action@v1 with: organization: true maximum: 500 fallback: '
' token: ${{ secrets.SPONSORS_README_ACTION_PERSONAL_ACCESS_TOKEN }} marker: 'supporters' template: ' ' file: 'README.md' - name: Deploy to GitHub Pages 🚀 uses: JamesIves/github-pages-deploy-action@v4 with: branch: main folder: '.'