Skip to content

chore: Remove long typewriter sentence #139

chore: Remove long typewriter sentence

chore: Remove long typewriter sentence #139

Workflow file for this run

name: Events Sync
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
inputs:
force-sync:
description: "Force sync even without changes"
required: false
default: false
push:
branches:
- main
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install Dependencies
run: npm install
- name: Run Data Script
run: npm run data
- name: Configure Git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "actions@github.com"
- name: Commit Changes
run: |
git add .
if git diff --cached --quiet; then
echo "No changes to commit"
exit 0
fi
git commit -m "Automated data update $(date +'%Y-%m-%d')"
git push origin main