-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add Cyclops CS Backend API reference documentation #2001
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
r33drichards
wants to merge
2
commits into
main
Choose a base branch
from
claude/fervent-cannon-9bt34b
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+2,920
−1
Open
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,70 @@ | ||
| name: "Sync: Cyclops CS spec" | ||
|
|
||
| # Refreshes the vendored Cyclops CS backend OpenAPI spec from its source of | ||
| # truth in trycua/cloud and regenerates the reference MDX. Opens a PR when the | ||
| # vendored copy or generated page drifts. | ||
| # | ||
| # Triggers: | ||
| # - repository_dispatch: trycua/cloud pings this when swagger.json changes | ||
| # (see trycua/cloud .github/workflows/notify-cyclops-cs-spec-change.yml) | ||
| # - schedule: daily self-heal in case a ping is missed | ||
| # - workflow_dispatch: manual run | ||
| # | ||
| # Required secret: | ||
| # CLOUD_REPO_TOKEN — a PAT or GitHub App token with read access to the | ||
| # private trycua/cloud repo contents. The built-in GITHUB_TOKEN cannot read | ||
| # another private repo, so this must be provisioned in repo/org settings. | ||
|
|
||
| on: | ||
| repository_dispatch: | ||
| types: [cyclops-cs-spec-changed] | ||
| schedule: | ||
| - cron: "0 7 * * *" | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| sync: | ||
| name: Sync vendored spec and regenerate docs | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout cua | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: "20" | ||
|
|
||
| - name: Install pnpm | ||
| uses: pnpm/action-setup@v4 | ||
|
|
||
| - name: Install Node dependencies | ||
| run: pnpm install | ||
| working-directory: docs | ||
|
|
||
| - name: Sync spec and regenerate | ||
| env: | ||
| CYCLOPS_CS_SPEC_SOURCE: "https://api.github.com/repos/trycua/cloud/contents/cyclops-cs/backend/docs/swagger.json?ref=main" | ||
| GITHUB_TOKEN: ${{ secrets.CLOUD_REPO_TOKEN }} | ||
| run: npx tsx scripts/docs-generators/sync-cyclops-cs-spec.ts | ||
|
|
||
| - name: Open PR on drift | ||
| uses: peter-evans/create-pull-request@v6 | ||
| with: | ||
| branch: docs/cyclops-cs-spec-sync | ||
| title: "docs(cyclops-cs): sync backend API reference from trycua/cloud" | ||
| commit-message: "docs(cyclops-cs): sync backend API reference from trycua/cloud" | ||
| body: | | ||
| Automated sync of the Cyclops CS backend OpenAPI spec from | ||
| `trycua/cloud` (`cyclops-cs/backend/docs/swagger.json`) and the | ||
| regenerated reference page. | ||
|
|
||
| Generated by `.github/workflows/sync-cyclops-cs-spec.yml`. Do not | ||
| edit the vendored spec or `http-api.mdx` by hand. | ||
| add-paths: | | ||
| scripts/docs-generators/specs/cyclops-cs.swagger.json | ||
| docs/content/docs/reference/cyclops-cs/http-api.mdx | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔒 Security & Privacy | 🟠 Major | ⚡ Quick win
Pin all GitHub Actions to commit SHAs and disable checkout credential persistence.
This workflow currently uses mutable action tags (Lines 35, 38, 43, 56) and default checkout credential persistence (Line 35), which weakens CI supply-chain security.
🧰 Tools
🪛 zizmor (1.26.1)
[error] 35-35: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy)
(unpinned-uses)
[error] 38-38: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy)
(unpinned-uses)
[error] 43-43: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy)
(unpinned-uses)
[error] 56-56: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy)
(unpinned-uses)
🤖 Prompt for AI Agents
Source: Linters/SAST tools