Fetch GitHub Sponsors #5
This file contains 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: Fetch GitHub Sponsors | |
on: | |
schedule: | |
- cron: "0 0 * * *" # Runs daily at midnight UTC | |
workflow_dispatch: | |
jobs: | |
fetch-sponsors: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Create package.json | |
run: | | |
echo '{ | |
"type": "module", | |
"dependencies": { | |
"@octokit/graphql": "^5.0.0" | |
} | |
}' > package.json | |
- name: Install Dependencies | |
run: npm install | |
- name: Fetch GitHub Sponsors | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: node scripts/fetch-sponsors.js | |
- name: Configure Git | |
run: | | |
git config --global user.name "GitHub Actions Bot" | |
git config --global user.email "[email protected]" | |
- name: Commit and Push Sponsors JSON | |
run: | | |
git add json/sponsors.json | |
git commit -m "Update sponsors.json with amounts" | |
git push |