Skip to content

Generate Live Demo Report #8

Generate Live Demo Report

Generate Live Demo Report #8

Workflow file for this run

name: Generate Live Demo Report
on:
schedule:
- cron: '45 22 * * 0'
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Generate Sample Report
run: python scripts/generate_sample.py
- name: Commit and Push if changed
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "docs: Update live demo report"
file_pattern: docs/sample-report.md
commit_user_name: "github-actions[bot]"
commit_user_email: "github-actions[bot]@users.noreply.github.com"