Skip to content

Generate sponsors.svg #3

Generate sponsors.svg

Generate sponsors.svg #3

Workflow file for this run

name: Generate sponsors.svg
on:
schedule: [{ cron: "0 2 * * 1" }]
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npx sponsorkit
env:
SPONSORKIT_GITHUB_TOKEN: ${{ secrets.SPONSOR_PAT }}
SPONSORKIT_GITHUB_LOGIN: loro-dev
- name: Commit SVG
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add sponsors.*
git commit -m "chore: update sponsors.svg" || echo "no changes"
git push