Scheduler #462
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: Scheduler | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: [main] | |
jobs: | |
update-sponsors: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- run: echo APP_INSIGHT_INSTRUMENT_KEY=example_key >> .env | |
- run: yarn install | |
- name: Update sponsors | |
run: npx sponsorkit | |
env: | |
SPONSORKIT_GITHUB_TOKEN: ${{ secrets.SPONSORKIT_GITHUB_TOKEN }} | |
SPONSORKIT_GITHUB_LOGIN: ${{ secrets.SPONSORKIT_GITHUB_LOGIN }} | |
- name: Commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "docs: update sponsors image" | |
add: "sponsorkit/sponsors.png" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |