Fix OAuth callback, layout, and tray regressions (#220) #13
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: Docs | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/docs.yml" | |
| - "docs-site/**" | |
| - "docs-content/**" | |
| - "scripts/docs/**" | |
| - "tests/docs/**" | |
| - "README.md" | |
| - "RELEASE_NOTES.md" | |
| - "src/row_bot/agent.py" | |
| - "src/row_bot/agent_context.py" | |
| - "src/row_bot/agent_profiles.py" | |
| - "src/row_bot/agent_runs.py" | |
| - "src/row_bot/agent_runner.py" | |
| - "src/row_bot/agent_tool_catalog.py" | |
| - "src/row_bot/docs_capture.py" | |
| - "src/row_bot/goals.py" | |
| - "src/row_bot/ui/**" | |
| - "src/row_bot/designer/**" | |
| - "src/row_bot/developer/**" | |
| - "src/row_bot/tools/**" | |
| - "src/row_bot/providers/**" | |
| - "src/row_bot/channels/**" | |
| - "src/row_bot/plugins/**" | |
| - "src/row_bot/mcp_client/**" | |
| - "bundled_skills/**" | |
| - "tool_guides/**" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/docs.yml" | |
| - "docs-site/**" | |
| - "docs-content/**" | |
| - "scripts/docs/**" | |
| - "tests/docs/**" | |
| - "README.md" | |
| - "RELEASE_NOTES.md" | |
| - "src/row_bot/agent.py" | |
| - "src/row_bot/agent_context.py" | |
| - "src/row_bot/agent_profiles.py" | |
| - "src/row_bot/agent_runs.py" | |
| - "src/row_bot/agent_runner.py" | |
| - "src/row_bot/agent_tool_catalog.py" | |
| - "src/row_bot/docs_capture.py" | |
| - "src/row_bot/goals.py" | |
| - "src/row_bot/ui/**" | |
| - "src/row_bot/designer/**" | |
| - "src/row_bot/developer/**" | |
| - "src/row_bot/tools/**" | |
| - "src/row_bot/providers/**" | |
| - "src/row_bot/channels/**" | |
| - "src/row_bot/plugins/**" | |
| - "src/row_bot/mcp_client/**" | |
| - "bundled_skills/**" | |
| - "tool_guides/**" | |
| concurrency: | |
| group: docs-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build docs | |
| runs-on: ubuntu-latest | |
| env: | |
| NO_UPDATE_NOTIFIER: "1" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install Python docs dependencies | |
| run: python -m pip install pyyaml pytest pillow | |
| - name: Collect docs inventory | |
| run: python scripts/docs/collect_inventory.py --out docs-build/inventory | |
| - name: Check generated reference pages | |
| run: python scripts/docs/generate_mdx.py --inventory docs-build/inventory --check | |
| - name: Generate LLM docs files | |
| run: python scripts/docs/generate_llms_txt.py --docs-root docs-site/docs --out-dir docs-site/static | |
| - name: Validate committed screenshots | |
| run: python scripts/docs/capture_real_ui_screenshots.py --validate-only | |
| - name: Validate docs source | |
| run: python scripts/docs/validate_public_docs.py | |
| - name: Build docs review report | |
| run: python scripts/docs/build_review_report.py | |
| - name: Run docs automation tests | |
| run: pytest tests/docs -q | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: npm | |
| cache-dependency-path: docs-site/package.json | |
| - name: Install docs dependencies | |
| working-directory: docs-site | |
| run: npm ci | |
| - name: Build docs site | |
| working-directory: docs-site | |
| run: npm run build:ci |