Skip to content

Fetch GitHub Sponsors #4

Fetch GitHub Sponsors

Fetch GitHub Sponsors #4

name: Fetch GitHub Sponsors
on:
schedule:
- cron: "0 0 * * *"
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: Install Dependencies
run: npm install @octokit/graphql
- 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