diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 949a24869f..cbf21ab796 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -12,3 +12,6 @@ src/ghes-releases/lib/enterprise-dates.json @github/docs-content-enterprise # Requires review of #actions-oidc-integration, docs-engineering/issues/1506 content/actions/deployment/security-hardening-your-deployments/** @github/oidc + +# RAI - CELA +content/copilot/github-copilot-chat/about-github-copilot-chat.md @github/legal-product diff --git a/content/contributing/writing-for-github-docs/using-yaml-frontmatter.md b/content/contributing/writing-for-github-docs/using-yaml-frontmatter.md index e207167b92..0d85d3570d 100644 --- a/content/contributing/writing-for-github-docs/using-yaml-frontmatter.md +++ b/content/contributing/writing-for-github-docs/using-yaml-frontmatter.md @@ -253,7 +253,7 @@ includeGuides: ### `type` - Purpose: Indicate the type of article. -- Type: `String`, one of the `overview`, `quick_start`, `tutorial`, `how_to`, `reference`. +- Type: `String`, one of the `overview`, `quick_start`, `tutorial`, `how_to`, `reference`, `rai`. - Optional. ### `topics` diff --git a/lib/frontmatter.js b/lib/frontmatter.js index 22448743c5..9ef9185de8 100644 --- a/lib/frontmatter.js +++ b/lib/frontmatter.js @@ -13,7 +13,7 @@ const layoutNames = [ false, ] -const guideTypes = ['overview', 'quick_start', 'tutorial', 'how_to', 'reference'] +const guideTypes = ['overview', 'quick_start', 'tutorial', 'how_to', 'reference', 'rai'] export const schema = { type: 'object', diff --git a/src/events/lib/schema.js b/src/events/lib/schema.js index 9529b45aab..42aec7f872 100644 --- a/src/events/lib/schema.js +++ b/src/events/lib/schema.js @@ -90,7 +90,7 @@ const context = { page_type: { type: 'string', description: 'Optional page type from the content frontmatter.', - enum: ['overview', 'quick_start', 'tutorial', 'how_to', 'reference'], // frontmatter.js + enum: ['overview', 'quick_start', 'tutorial', 'how_to', 'reference', 'rai'], // frontmatter.js }, status: { type: 'number',