Skip to content

Fix Missing Calendar Date #5

Fix Missing Calendar Date

Fix Missing Calendar Date #5

name: Fix Missing Calendar Date
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: # Enables manual triggering
jobs:
fix_calendar_date:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Dependencies
run: pip install pyyaml
- name: Run Calendar Date Fix Script
run: python .github/scripts/fix_calendar_date.py
- name: Commit and Push Changes
run: |
git config --global user.name \"github-actions[bot]\"
git config --global user.email \"[email protected]\"
git add .
git commit -m \"Automated fix: Added missing calendar_date\" || echo \"No changes needed \"
git push