Skip to content

Scheduler

Scheduler #428

Workflow file for this run

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 }}