You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Status: Operator-facing description of inbound HTTP surfaces used to trigger workflows in this repository. Labels: documented (paths and behavior match the checked-in workflows and scripts), partial (no helper script in-repo; still valid via GitHub API or schedule).
All file paths below are relative to the root of this repository.
Overview
GitHub REST API — POST /repos/{owner}/{repo}/dispatches runs workflows via repository_dispatch. Helper scripts live under scripts/. sync-translation can also start on a daily schedule inside GitHub Actions (not an HTTP call you make).
flowchart LR
subgraph operators [Operators and scripts]
trigStart[trigger-start-translation.sh]
trigAdd[trigger-add-submodules.sh]
end
subgraph github [GitHub REST API]
dispatches[POST repos dispatches]
end
subgraph gha [GitHub Actions in this repo]
wfStart[start-translation.yml]
wfAdd[add-submodules.yml]
wfSync[sync-translation.yml]
cronSync[daily schedule]
end
trigStart --> dispatches
trigAdd --> dispatches
dispatches --> wfStart
dispatches --> wfAdd
dispatches --> wfSync
cronSync --> wfSync