Generate Sponsors README #1
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: 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' | |
# ⚠️ Note: You can use any deployment step here to automatically push the README | |
# changes back to your branch. | |
# - name: Deploy to GitHub Pages 🚀 | |
# uses: JamesIves/github-pages-deploy-action@v4 | |
# with: | |
# branch: master # The branch the action should deploy to. | |
# folder: '.' |