docs: annotate cards/intro snippet to trigger Mintlify redeploy#491
Conversation
…k up Stainless Cards)
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
Greptile SummaryThis PR adds a JSX comment to
Confidence Score: 5/5Safe to merge — the change is a single JSX comment addition with no functional modifications to content, navigation, or configuration. The only change is adding a descriptive comment to an MDX snippet file. Nothing about the rendered output, imports, or Mintlify configuration is altered; the sole effect is triggering a Mintlify deploy. No files require special attention.
|
| Filename | Overview |
|---|---|
| mintlify/snippets/cards/intro.mdx | Adds a JSX comment header to trigger Mintlify redeploy; no content changes. |
Sequence Diagram
sequenceDiagram
participant Dev as Developer
participant GH as GitHub
participant Mintlify
participant Stainless
Dev->>GH: "Merge PR #490 (openapi.yaml only)"
GH-->>Mintlify: Webhook (no mintlify/ files changed)
Mintlify-->>Mintlify: Skip deploy
Dev->>GH: "Merge PR #491 (intro.mdx comment added)"
GH->>Mintlify: Webhook (mintlify/ file changed)
Mintlify->>Stainless: Fetch openapi.documented.yml
Stainless-->>Mintlify: Returns updated spec (with Cards endpoints)
Mintlify-->>Mintlify: "Build & deploy production docs"
Mintlify-->>Dev: Cards group visible at grid.lightspark.com/api-reference
Reviews (1): Last reviewed commit: "docs: annotate cards/intro snippet (trig..." | Re-trigger Greptile
Summary
Tiny snippet annotation to force a Mintlify redeploy. PR #490 only touched
openapi/openapi.yaml(outsidemintlify/), so Mintlify's GitHub integration skipped the deploy on that merge and the production API reference is still missing the Cards group.Touching a file under
mintlify/here triggers an actual Mintlify deploy, which re-fetches Stainless's now-updatedopenapi.documented.yml(already serves Cards endpoints) and bakes it into the production build.Test plan