FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

docs(governance): add admin role (#11) · bombshell-dev/.github@16fefe7 · GitHub

Scheduler

Scheduler #117

Workflow file for this run

This file contains hidden or 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@v6
- name: Setup PNPM
uses: pnpm/action-setup@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: lts/*
- run: pnpm i
- name: Update sponsors
run: pnpm run build
env:
# Requires no scopes or 2FA actions enabled.
SPONSORKIT_OPENCOLLECTIVE_KEY: ${{ secrets.SPONSORKIT_OPENCOLLECTIVE_KEY }}
# Requires the `read:user` and `read:org` scopes.
SPONSORKIT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Commit
uses: EndBug/add-and-commit@v10
with:
default_author: github_actions
message: "chore: update sponsors.svg"
add: "sponsors/sponsors.*"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Back | FazBrowse Home | New Git URL