From ffe1077cb903b8fecc5c05ca359cb026525c52da Mon Sep 17 00:00:00 2001 From: Jinhao Xu Date: Sun, 13 Sep 2026 20:16:43 +0800 Subject: [PATCH] docs: add ingest stub and ci-docs.yml@v2 --- .github/workflows/ci-docs.yml | 18 ++++++++++++++++++ docs/index.mdx | 6 ++++++ docs/meta.json | 5 +++++ 3 files changed, 29 insertions(+) create mode 100644 .github/workflows/ci-docs.yml create mode 100644 docs/index.mdx create mode 100644 docs/meta.json diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml new file mode 100644 index 0000000..c1dd430 --- /dev/null +++ b/.github/workflows/ci-docs.yml @@ -0,0 +1,18 @@ +# Caller owns on:. Pin at @v2. +# Do not set jobs.docs.name: the required check is docs / ci. +name: Docs + +on: + push: + branches: [main] + pull_request: + branches: [main] + +permissions: + contents: read + +jobs: + docs: + uses: qntx/workflows/.github/workflows/ci-docs.yml@v2 + permissions: + contents: read diff --git a/docs/index.mdx b/docs/index.mdx new file mode 100644 index 0000000..aafd54b --- /dev/null +++ b/docs/index.mdx @@ -0,0 +1,6 @@ +--- +title: openai-python +description: Documentation stub. +--- + +Documentation stub. diff --git a/docs/meta.json b/docs/meta.json new file mode 100644 index 0000000..9288c16 --- /dev/null +++ b/docs/meta.json @@ -0,0 +1,5 @@ +{ + "title": "openai-python", + "description": "Documentation stub.", + "pages": ["index"] +}