Skip to content

Fetch GitHub Sponsors #5

Fetch GitHub Sponsors

Fetch GitHub Sponsors #5

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