Fetch GitHub Sponsors #3
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: | |
# Checkout the repository | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Set up Node.js environment | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
# Install dependencies | |
- name: Install GraphQL CLI | |
run: npm install -g @octokit/graphql | |
# Fetch sponsors using GitHub GraphQL API | |
- name: Fetch GitHub Sponsors | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
echo '{ | |
"query": "query { user(login: \\"DerGoogler\\") { sponsorshipsAsMaintainer(first: 100) { nodes { sponsorEntity { ... on User { login avatarUrl url } ... on Organization { login avatarUrl url } } tier { monthlyPriceInCents } } } } }" | |
}' | npx @octokit/graphql > json/sponsors.json | |
# Configure Git user for commit | |
- name: Configure Git | |
run: | | |
git config --global user.name "GitHub Actions Bot" | |
git config --global user.email "[email protected]" | |
# Commit and push the sponsors.json file | |
- name: Commit and Push Sponsors JSON | |
run: | | |
git add json/sponsors.json | |
git commit -m "Update sponsors.json with amounts" | |
git push |