re: implement 0001's approved Phase 4 proposals, add session-logging … #65
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: Update docs sidebar | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'captures/**' | |
| - '*.md' | |
| jobs: | |
| regenerate-sidebar: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: ./generate_sidebar.sh | |
| - run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git diff --quiet _sidebar.md || (git add _sidebar.md && git commit -m "docs: auto-regenerate sidebar [skip ci]" && git push) |