Skip to content

Build README

Build README #9

Workflow file for this run

name: Build README
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0"
env:
GH_USER: ${{ github.actor }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Use Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install node dependencies
run: bun i
- name: Update repo of the week
run: bun run refresh
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5