Skip to content

feat: accumulating scatter + click-to-filter step across UI #7

feat: accumulating scatter + click-to-filter step across UI

feat: accumulating scatter + click-to-filter step across UI #7

Workflow file for this run

name: Trigger graphbook docs deploy
on:
push:
branches: [main]
paths:
- 'docs/**'
- 'nebo/**'
- 'pyproject.toml'
- 'uv.lock'
- '.github/workflows/deploy-docs.yml'
workflow_dispatch:
jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Mint graphbook app token
id: graphbook_token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.NEBO_DOCS_APP_ID }}
private-key: ${{ secrets.NEBO_DOCS_APP_PRIVATE_KEY }}
owner: graphbookai
repositories: graphbook
- name: Dispatch nebo-docs-updated to graphbook
env:
GH_TOKEN: ${{ steps.graphbook_token.outputs.token }}
NEBO_SHA: ${{ github.sha }}
run: |
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
/repos/graphbookai/graphbook/dispatches \
-f "event_type=nebo-docs-updated" \
-f "client_payload[nebo_sha]=${NEBO_SHA}"