test: add unlazy routing cases #14
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Bootstrap Social Preview | |
| on: | |
| push: | |
| branches: ["feat/content-provenance-hygiene"] | |
| permissions: | |
| contents: write | |
| jobs: | |
| refresh: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out feature branch | |
| uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 | |
| with: | |
| ref: feat/content-provenance-hygiene | |
| - name: Install renderer dependency | |
| run: python -m pip install --disable-pip-version-check pillow | |
| - name: Render and verify social preview | |
| run: | | |
| python scripts/render_social_preview.py | |
| python scripts/verify_release_metadata.py | |
| - name: Commit generated preview and remove bootstrap | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git rm .github/workflows/bootstrap-social-preview.yml | |
| git add .github/assets/codex-toolkit-social-preview.png \ | |
| .github/assets/codex-toolkit-social-preview.manifest.json | |
| git commit -m "chore: refresh social preview" | |
| git push origin HEAD:feat/content-provenance-hygiene |