Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

37 changes: 37 additions & 0 deletions .github/workflows/docs-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Docs validation

on:
pull_request:
branches:
- master
workflow_dispatch:

permissions:
contents: read

jobs:
validate-docs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22

- name: Install Mintlify CLI
run: npm install -g mint

- name: Validate JSON
run: |
jq empty docs.json
jq empty openapi.json

- name: Check broken links
run: mint broken-links

- name: Validate Mintlify docs
run: mint validate
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
282 changes: 0 additions & 282 deletions .github/workflows/update-docs.yml

This file was deleted.

9 changes: 0 additions & 9 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,3 @@ Before approving, check that:
- `openapi` frontmatter exactly matches `openapi.json`.
- OpenAPI contains the real API contract and examples.
- Copy is concise, useful, and public-facing.

For nav, frontmatter, OpenAPI, or link changes, run:

```sh
jq empty docs.json
jq empty openapi.json
mint broken-links
mint validate
```
Loading
Loading