Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
a35629e
docs(fern): scaffold fern infrastructure under docs/fern/
lbliii May 22, 2026
5bae4e8
docs(fern-migrate): rename docs/*.md → docs/*.mdx + retire mkdocs
lbliii May 22, 2026
e7f3c91
docs(fern-migrate): convert MkDocs MD to Fern MDX (194 pages)
lbliii May 22, 2026
790bd00
docs(fern-migrate): relocate snippets to docs/fern/snippets/
lbliii May 22, 2026
d0209eb
docs(fern-migrate): notebook viewer pipeline + 7 MDX wrappers
lbliii May 22, 2026
3b94676
docs(fern-migrate): mount nav at docs/fern/versions/latest.yml
lbliii May 22, 2026
543b466
docs(fern): switch to NVIDIA global-theme; drop bespoke brand assets
lbliii May 22, 2026
520ed0a
docs(fern): replace @/ imports with Fern-native tags for out-of-fern …
lbliii May 22, 2026
381e0a9
Merge pull request #25 from NVIDIA-NeMo/lbliii/fern-pr-repo-move
lbliii May 22, 2026
99af641
Merge branch 'main' into lbliii/fern-docs-port
lbliii May 22, 2026
8a455a0
ci(fern): replace docs workflow with Fern workflows and unbreak builds
lbliii May 22, 2026
545bbe8
Merge branch 'main' into lbliii/fern-docs-port
lbliii May 22, 2026
d163f9c
Merge branch 'main' into lbliii/fern-docs-port
lbliii Jun 4, 2026
f978ea3
ci(fern): npm ci before fern check so validate-mdx has @mdx-js/mdx
lbliii Jun 4, 2026
fa23c6a
fix(auth): write permissions reference to .mdx and refresh for merged…
lbliii Jun 4, 2026
c5f96ce
docs(safe-synthesizer): use literal product name in host-local page
lbliii Jun 4, 2026
40a0028
docs: expand leftover product-name macros to literal values
lbliii Jun 4, 2026
cea3be9
docs(fern): render REST API reference natively from OpenAPI
lbliii Jun 4, 2026
190698c
docs(fern): rewrite internal links to canonical Fern URLs
lbliii Jun 4, 2026
3d27f04
docs(fern): configure hidden pages and resolve remaining broken links
lbliii Jun 4, 2026
021809a
docs: inline remaining substitution variables (escaped {{ }} forms)
lbliii Jun 4, 2026
32cdf8c
docs(fern): gate unready features by excluding them from the build
lbliii Jun 4, 2026
3d7c1b8
Merge remote-tracking branch 'origin/main' into lbliii/fern-docs-port
lbliii Jun 5, 2026
7f8060c
docs(fern): automate delinking of references into gated pages
lbliii Jun 5, 2026
23a64d6
docs(fern): add make targets, docs/AGENTS.md, and fix stale MkDocs refs
lbliii Jun 5, 2026
020e6b2
Merge branch 'main' into lbliii/fern-docs-port
lbliii Jun 5, 2026
03eb96c
fix(ci): ruff-format dev MCP tool and refresh permissions reference
lbliii Jun 5, 2026
a94b2eb
Merge branch 'main' into lbliii/fern-docs-port
lbliii Jun 5, 2026
6cc7d01
Merge branch 'main' into lbliii/fern-docs-port
lbliii Jun 8, 2026
5c01284
Merge branch 'main' into lbliii/fern-docs-port
lbliii Jun 9, 2026
1a63624
docs(fern): set production custom domain for docs site
lbliii Jun 9, 2026
93cd2ed
docs(fern): gitignore auto-generated ai_examples_override.yml
lbliii Jun 9, 2026
4561ef0
docs(fern): restore Safe Synthesizer section to the build
lbliii Jun 9, 2026
518dbf9
Merge remote-tracking branch 'origin/main' into lbliii/fern-docs-port
lbliii Jun 9, 2026
390a752
Merge remote-tracking branch 'origin/main' into lbliii/fern-docs-port
lbliii Jun 9, 2026
c8f6f0c
Merge branch 'main' into lbliii/fern-docs-port
yamini Jun 9, 2026
8ae5b58
docs: resolve CodeRabbit conversion findings (MDX content fixes)
yamini Jun 9, 2026
8d2b15e
ci(fern-docs): harden workflows per review (pin actions, least-priv)
yamini Jun 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
324 changes: 0 additions & 324 deletions .github/workflows/docs.yaml

This file was deleted.

40 changes: 40 additions & 0 deletions .github/workflows/fern-docs-ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

# Validates Fern docs configuration on pull requests.
# See docs/fern/README.md and docs/fern/docs.yml `libraries`.

name: Fern docs (check)

on:
pull_request:
paths:
- 'docs/**'
- '.github/workflows/fern-docs-ci.yaml'

permissions:
contents: read

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: docs/fern/package-lock.json
Comment thread
coderabbitai[bot] marked this conversation as resolved.

- name: Install docs tooling
working-directory: ./docs/fern
run: npm ci

- name: Validate Fern configuration
working-directory: ./docs/fern
env:
FERN_TOKEN: ${{ secrets.DOCS_FERN_TOKEN }}
run: npm run check
Loading
Loading