Skip to content

Merge pull request #37 from IABTechLab/feature/progress-auto-update #1

Merge pull request #37 from IABTechLab/feature/progress-auto-update

Merge pull request #37 from IABTechLab/feature/progress-auto-update #1

name: Update PROGRESS.md
on:
push:
branches: [main]
permissions:
contents: write
jobs:
update-progress:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Regenerate PROGRESS.md
run: python .beads/generate_progress.py
- name: Commit and push if changed
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .beads/PROGRESS.md
if ! git diff --cached --quiet; then
git commit -m "Auto-update PROGRESS.md"
git push
fi