If you use Mintlify’s OpenAPI support for your API reference documentation, add the following to your Stainless config:
openapi:
code_samples: mintlify
Configure the OpenAPI setup in your Mintlify docs. To integrate Stainless, modify the GitHub Action that uploads your OpenAPI spec to Stainless so that it pushes the Stainless-enhanced OpenAPI spec into your docs repo like so:
name: Upload OpenAPI spec to Stainless and (Mintlify) docs repo
on:
push:
branches: [main]
workflow_dispatch:
jobs:
stainless:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Push spec and config to Stainless and outputs documented spec
uses: stainless-api/upload-openapi-spec-action@main
with:
input_path: 'path/to/my-company-openapi.json'
config_path: 'path/to/my-company.stainless.yaml'
output_path: 'path/to/my-company-openapi.documented.json'
project_name: 'my-stainless-project'
- name: Push documented spec to docs repo
uses: dmnemec/copy_file_to_another_repo_action@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source_file: 'config/my-company-openapi.documented.json'
destination_repo: '{DOCS_REPO_NAME}'
destination_folder: 'openapi-specs'
user_email: '{EMAIL}'
user_name: '{USERNAME}'
commit_message: 'Auto-updates from Stainless'
This assumes the following secrets have been uploaded to your Github Actions Secrets:
secrets.STAINLESS_API_KEY
: Your Stainless API key.
secrets.API_TOKEN_GITHUB
: A Github Personal Access Token with permissions to push to your docs repo.