Skip to content

stats

stats #5

Workflow file for this run

---
name: stats
on:
schedule:
# Run daily at 00:00 UTC
- cron: "0 0 * * *"
workflow_dispatch: # Allow manual triggers
permissions:
contents: read
actions: read
issues: write
jobs:
analyze:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up uv
uses: astral-sh/setup-uv@v7
- name: Run CI failure analysis
env:
GH_TOKEN: ${{ github.token }}
run: uv run python tools/analyze_ci_failures.py
- name: Display summary
if: always()
run: |
echo "## CI Failure Analysis Summary" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
tail -n 10 out/ci_failure_report.md >> $GITHUB_STEP_SUMMARY