Skip to content

Update Status

Update Status #8

Workflow file for this run

name: Update Status
on:
schedule:
# https://crontab.guru/every-month
- cron: 0 0 1 * *
workflow_dispatch:
jobs:
update-status:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: '0.8.0'
- name: Install dependencies
run: bun install
- name: Build Markdown
run: bun start
- name: Commit & Push Changes
run: |
git config user.name "farizdotid"
git config user.email "[email protected]"
git add --all
git commit -m "chore(readme): update"
git push origin HEAD
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}