From bae3b656a6a58e1af0cab577569ea2346dfafd45 Mon Sep 17 00:00:00 2001 From: Kevin Heis Date: Wed, 11 Mar 2026 15:03:51 -0700 Subject: [PATCH 1/6] Add translation correction patterns for ja, ko, zh, pt, es, fr, de (#60164) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../lib/correct-translation-content.ts | 47 +++++++++++++++---- 1 file changed, 37 insertions(+), 10 deletions(-) diff --git a/src/languages/lib/correct-translation-content.ts b/src/languages/lib/correct-translation-content.ts index c5ed7c4ad627..3cff597756e1 100644 --- a/src/languages/lib/correct-translation-content.ts +++ b/src/languages/lib/correct-translation-content.ts @@ -28,14 +28,25 @@ export function correctTranslatedContentStrings( content = content.replaceAll('{% de datos variables', '{% data variables') content = content.replaceAll('{% datos reusables', '{% data reusables') content = content.replaceAll('{% data reutilizables.', '{% data reusables.') - content = content.replaceAll('{%- ifversion fpt o ghec %}', '{%- ifversion fpt or ghec %}') - content = content.replaceAll('{% ifversion fpt o ghec %}', '{% ifversion fpt or ghec %}') + // Catch "o" between any plan names in ifversion/elsif tags + content = content.replace(/\{%-? (?:ifversion|elsif) [^%]*?\bo\b[^%]*?%\}/g, (match) => { + return match.replace(/ o /g, ' or ') + }) } if (context.code === 'ja') { content = content.replaceAll('{% データ variables', '{% data variables') content = content.replaceAll('{% データvariables', '{% data variables') content = content.replaceAll('{% データ reusables', '{% data reusables') + content = content.replaceAll('{% データ変数.', '{% data variables.') + content = content.replaceAll('{% データ再利用可能な.', '{% data reusables.') + content = content.replaceAll('{% データ再利用可能.', '{% data reusables.') + content = content.replaceAll('{% データ再利用.', '{% data reusables.') + content = content.replaceAll('{% メモ %}', '{% note %}') + // Catch "または" between any plan names in ifversion/elsif tags + content = content.replace(/\{%-? (?:ifversion|elsif) [^%]*?または[^%]*?%\}/g, (match) => { + return match.replace(/ または /g, ' or ') + }) // Fix trailing quote on YAML value content = content.replace(/^(\s*asked_too_many_times:\s*.+)"\s*$/m, '$1') @@ -53,6 +64,11 @@ export function correctTranslatedContentStrings( content = content.replaceAll('{% dados reusables', '{% data reusables') content = content.replaceAll('{{% dados ', '{% data ') content = content.replaceAll('{{% datas ', '{% data ') + content = content.replaceAll('{% senão %}', '{% else %}') + // Catch "ou" between any plan names in ifversion/elsif tags + content = content.replace(/\{%-? (?:ifversion|elsif) [^%]*?ou [^%]*?%\}/g, (match) => { + return match.replace(/ ou /g, ' or ') + }) } if (context.code === 'zh') { @@ -60,6 +76,12 @@ export function correctTranslatedContentStrings( content = content.replaceAll('{% 数据 variables', '{% data variables') content = content.replaceAll('{% 数据可重用', '{% data reusables') content = content.replaceAll('{% 数据可重用s.', '{% data reusables.') + content = content.replaceAll('{% 其他 %}', '{% else %}') + content = content.replaceAll('{% 原始 %}', '{% raw %}') + // Catch "或" between any plan names in ifversion/elsif tags + content = content.replace(/\{%-? (?:ifversion|elsif) [^%]*?或[^%]*?%\}/g, (match) => { + return match.replace(/ 或 /g, ' or ') + }) } if (context.code === 'ru') { @@ -120,12 +142,8 @@ export function correctTranslatedContentStrings( content = content.replaceAll('{% données réutilisables.', '{% data reusables.') content = content.replaceAll('{% variables de données.', '{% data variables.') content = content.replaceAll('{% autre %}', '{% else %}') - content = content.replaceAll('{%- ifversion fpt ou ghec %}', '{%- ifversion fpt or ghec %}') - content = content.replaceAll('{% ifversion fpt ou ghec %}', '{% ifversion fpt or ghec %}') - content = content.replaceAll('{%- ifversion fpt ou ghec ou', '{%- ifversion fpt or ghec or') - content = content.replaceAll('{% ifversion fpt ou ghec ou', '{% ifversion fpt or ghec or') - // Catch remaining "ou" between any plan names in ifversion tags - content = content.replace(/\{%-? ifversion [^%]*?ou [^%]*?%\}/g, (match) => { + // Catch remaining "ou" between any plan names in ifversion/elsif tags + content = content.replace(/\{%-? (?:ifversion|elsif) [^%]*?ou [^%]*?%\}/g, (match) => { return match.replace(/ ou /g, ' or ') }) } @@ -137,6 +155,12 @@ export function correctTranslatedContentStrings( content = content.replaceAll('{% 데이터 변수.', '{% data variables.') content = content.replaceAll('{% 데이터 변숫값.', '{% data variables.') content = content.replaceAll('{% dada variables', '{% data variables') + content = content.replaceAll('{% 기타 %}', '{% else %}') + content = content.replaceAll('{% 참고 %}', '{% note %}') + // Catch "또는" between any plan names in ifversion/elsif tags + content = content.replace(/\{%-? (?:ifversion|elsif) [^%]*?또는[^%]*?%\}/g, (match) => { + return match.replace(/ 또는 /g, ' or ') + }) // Korean translation of github-glossary.md content = content.replaceAll('{{ 용어집.term }}', '{{ glossary.term }}') @@ -151,8 +175,8 @@ export function correctTranslatedContentStrings( content = content.replaceAll('{%-Daten-variables', '{%- data variables') content = content.replaceAll('{%- ifversion fpt oder ghec %}', '{%- ifversion fpt or ghec %}') content = content.replaceAll('{% ifversion fpt oder ghec %}', '{% ifversion fpt or ghec %}') - // Catch remaining "oder" between any plan names in ifversion tags - content = content.replace(/\{%-? ifversion [^%]*?oder [^%]*?%\}/g, (match) => { + // Catch remaining "oder" between any plan names in ifversion/elsif tags + content = content.replace(/\{%-? (?:ifversion|elsif) [^%]*?oder [^%]*?%\}/g, (match) => { return match.replace(/ oder /g, ' or ') }) } @@ -183,6 +207,9 @@ export function correctTranslatedContentStrings( content = content.replaceAll('{% variables.', '{% data variables.') content = content.replaceAll('{% datavariables', '{% data variables') + // Fix spaces inside Liquid tag delimiters, e.g. `{ % endif % }` → `{% endif %}` + content = content.replace(/\{ +%([^%]+?)% +\}/g, '{%$1%}') + // Recover linebreaks that translations lose after Liquid closing tags. // Compares each `{% ... %} ` in the translation against the English // to see if it should be `{% ... %}\n` instead. From 3621c10cd5a0b7ea7a897da8d108474780e29c9d Mon Sep 17 00:00:00 2001 From: "T. Greg Doucette" <58960990+LawDevNull@users.noreply.github.com> Date: Wed, 11 Mar 2026 19:36:27 -0400 Subject: [PATCH 2/6] Add GA date field to DPA-Covered Previews page (#60148) --- .../site-policy/github-terms/github-dpa-previews.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/site-policy/github-terms/github-dpa-previews.md b/content/site-policy/github-terms/github-dpa-previews.md index 1687667220e3..247a79539285 100644 --- a/content/site-policy/github-terms/github-dpa-previews.md +++ b/content/site-policy/github-terms/github-dpa-previews.md @@ -7,10 +7,10 @@ versions: ## GitHub DPA-Covered Previews -The pre-release products and features listed below use data handling that is the same as when the software becomes generally available. Under [GitHub’s Pre-Release License Terms](https://gh.io/preview-terms), this software is governed by [the GitHub Data Protection Agreement](https://gh.io/dpa) as of the date listed, and the Customer is the Data Controller beginning on that date. +The pre-release products and features listed below use data handling that is the same as when the software becomes generally available. Under [GitHub’s Pre-Release License Terms](https://gh.io/preview-terms), this software is governed by [the GitHub Data Protection Agreement](https://gh.io/dpa) as of the date listed, and the Customer is the Data Controller beginning on that date (the "DPA Coverage Date"). The software is no longer considered a Preview on the date it becomes generally available (the "GA Date"). -| Product / Feature | DPA Coverage Date | -|:---------------------------------------------------|:-------------------:| -| Copilot CLI | 27 October 2025 | -| Copilot Enterprise & Users Usage Metrics Dashboard | 27 October 2025 | -| Spark | 27 October 2025 | +| Product / Feature | DPA Coverage Date | GA Date | +|:---------------------------------------------------|:-------------------:|:------------------:| +| Copilot CLI | 27 October 2025 | 25 February 2026 | +| Copilot Enterprise & Users Usage Metrics Dashboard | 27 October 2025 | 27 February 2026 | +| Spark | 27 October 2025 | [TBD] | From fe1e7ae55ed5c2991baddbd7e3a80d874584cb40 Mon Sep 17 00:00:00 2001 From: Kevin Heis Date: Wed, 11 Mar 2026 15:18:15 -0700 Subject: [PATCH 3/6] Article API: extract common webhook parameters and remove JSON examples (#60076) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../templates/webhooks-page.template.md | 21 +++++---- src/article-api/tests/webhooks-transformer.ts | 43 +++++++++++++++++-- .../transformers/webhooks-transformer.ts | 29 +++++++++++-- 3 files changed, 77 insertions(+), 16 deletions(-) diff --git a/src/article-api/templates/webhooks-page.template.md b/src/article-api/templates/webhooks-page.template.md index dbf51b71d30f..fd1aaf10bdb4 100644 --- a/src/article-api/templates/webhooks-page.template.md +++ b/src/article-api/templates/webhooks-page.template.md @@ -8,6 +8,19 @@ {{ manualContent }} {% endif %} +{% if commonParams.size > 0 %} +## Common payload parameters + +Most webhook events include these standard parameters: + +| Name | Type | Description | +|------|------|-------------| +{% for param in commonParams %}| `{{ param.name }}` | `{{ param.type }}` | {% if param.isRequired %}**Required.** {% endif %}{{ param.description }} | +{% endfor %} + +Events below list only their additional parameters beyond these common ones. + +{% endif %} {% for webhook in webhooks %} ## {{ webhook.name }} @@ -40,13 +53,5 @@ {% for param in webhook.bodyParameters %}| `{{ param.name }}` | `{{ param.type }}` | {% if param.isRequired %}**Required.** {% endif %}{{ param.description }} | {% endfor %} -{% endif %} -{% if webhook.payloadExample %} -### Webhook payload example - -```json -{{ webhook.payloadExample }} -``` - {% endif %} {% endfor %} diff --git a/src/article-api/tests/webhooks-transformer.ts b/src/article-api/tests/webhooks-transformer.ts index 4bf18d7ef21f..8c611b285177 100644 --- a/src/article-api/tests/webhooks-transformer.ts +++ b/src/article-api/tests/webhooks-transformer.ts @@ -122,11 +122,46 @@ describe('Webhooks transformer', () => { const res = await get(makeURL('/en/webhooks/webhook-events-and-payloads')) expect(res.statusCode).toBe(200) - // NOTE: The current webhook source data does not include payloadExample fields, - // so this section won't appear in the output. The transformer code (lines 115-120) - // is ready to display payload examples if/when they are added to the source data. - // For now, we just verify the transformer doesn't crash on missing examples. + // Payload examples are deliberately omitted from the article API output to save space. + // The property tables describe the payload structure instead. + expect(res.body).not.toContain('### Webhook payload example') + expect(res.body).not.toMatch(/```json/) + }) + + test('common parameters are extracted into a shared section', async () => { + const res = await get(makeURL('/en/webhooks/webhook-events-and-payloads')) expect(res.statusCode).toBe(200) + + // Should have a common parameters section at the top + expect(res.body).toContain('## Common payload parameters') + expect(res.body).toContain('Most webhook events include these standard parameters') + + // Common params like 'sender' and 'repository' should appear in the common section + // (they're in 60%+ of webhook events) + const commonSection = res.body.split('## Common payload parameters')[1]?.split('\n## ')[0] || '' + expect(commonSection).toContain('`sender`') + expect(commonSection).toContain('`repository`') + }) + + test('common parameters are not repeated in individual webhook sections', async () => { + const res = await get(makeURL('/en/webhooks/webhook-events-and-payloads')) + expect(res.statusCode).toBe(200) + + // Find individual webhook sections after the common section + const sections = res.body.split('\n## ') + const webhookSections = sections.filter( + (s: string) => !s.startsWith('Common payload parameters') && !s.startsWith(sections[0]), // skip content before first ## + ) + + // In individual webhook parameter tables, common params should not appear + for (const section of webhookSections.slice(0, 3)) { + // If the section has a parameter table + if (section.includes('#### Webhook payload object parameters')) { + const tableContent = section.split('#### Webhook payload object parameters')[1] || '' + // 'sender' should NOT appear in individual tables + expect(tableContent).not.toMatch(/\|\s*`sender`\s*\|/) + } + } }) test('Non-webhooks pages are not transformed', async () => { diff --git a/src/article-api/transformers/webhooks-transformer.ts b/src/article-api/transformers/webhooks-transformer.ts index d30e84a08fb0..ba2a4c623bd5 100644 --- a/src/article-api/transformers/webhooks-transformer.ts +++ b/src/article-api/transformers/webhooks-transformer.ts @@ -48,7 +48,7 @@ export class WebhooksTransformer implements PageTransformer { } } - // Prepare webhooks data for template + // Prepare webhooks data for template (payload examples are omitted to save space) const preparedWebhooks = webhooksData.map((webhook) => ({ name: webhook.name, actionTypes: webhook.actionTypes, @@ -63,11 +63,31 @@ export class WebhooksTransformer implements PageTransformer { : '', isRequired: param.isRequired || false, })), - payloadExample: webhook.data.payloadExample - ? JSON.stringify(webhook.data.payloadExample, null, 2) - : null, })) + // Identify common body parameters that appear in most webhooks + const paramCounts = new Map() + for (const webhook of preparedWebhooks) { + for (const param of webhook.bodyParameters) { + paramCounts.set(param.name, (paramCounts.get(param.name) || 0) + 1) + } + } + const threshold = preparedWebhooks.length * 0.6 + const commonParamNames = new Set( + [...paramCounts.entries()].filter(([, count]) => count >= threshold).map(([name]) => name), + ) + + // Remove common params from each webhook and collect them for summary + const commonParams = + preparedWebhooks[0]?.bodyParameters.filter((p: { name: string }) => + commonParamNames.has(p.name), + ) || [] + for (const webhook of preparedWebhooks) { + webhook.bodyParameters = webhook.bodyParameters.filter( + (p: { name: string }) => !commonParamNames.has(p.name), + ) + } + // Prepare template data const templateData: Record = { page: { @@ -76,6 +96,7 @@ export class WebhooksTransformer implements PageTransformer { }, manualContent, webhooks: preparedWebhooks, + commonParams, } // Load and render template From 51b6b0abbe6ef8231d9ec9a7306913476c379417 Mon Sep 17 00:00:00 2001 From: Kevin Heis Date: Wed, 11 Mar 2026 17:24:04 -0700 Subject: [PATCH 4/6] Article API: simplify GitHub Apps permissions token indicators (#60075) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../tests/github-apps-transformer.ts | 11 ++++--- .../transformers/github-apps-transformer.ts | 31 ++++++++++--------- 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/src/article-api/tests/github-apps-transformer.ts b/src/article-api/tests/github-apps-transformer.ts index 9a926d3d44c2..80fc1acfc4bc 100644 --- a/src/article-api/tests/github-apps-transformer.ts +++ b/src/article-api/tests/github-apps-transformer.ts @@ -164,9 +164,12 @@ describe('GitHub Apps transformer', () => { const res = await get(makeURL('/en/rest/authentication/permissions-required-for-github-apps')) expect(res.statusCode).toBe(200) - // Check for IAT and UAT links in Tokens column - expect(res.body).toMatch(/\[IAT\]\(\/en\/apps\/creating-github-apps\//) - expect(res.body).toMatch(/\[UAT\]\(\/en\/apps\/creating-github-apps\//) + // Check for legend + expect(res.body).toContain('UAT = user access token') + expect(res.body).toContain('IAT = installation access token') + + // Check that token types appear in actual table rows (not just the legend) + expect(res.body).toMatch(/\|\s*(?:UAT|IAT|UAT, IAT|None)\s*\|/) }) test('table shows additional permissions with checkmark/cross', async () => { @@ -221,8 +224,6 @@ describe('GitHub Apps transformer', () => { // Check that AUTOTITLE has been resolved expect(res.body).not.toContain('[AUTOTITLE]') - // Should have actual link text - expect(res.body).toMatch(/\[.*?\]\(\/en\/apps\//) }) test('API version parameter is supported', async () => { diff --git a/src/article-api/transformers/github-apps-transformer.ts b/src/article-api/transformers/github-apps-transformer.ts index f04b9b1e3c94..b13f5e22de87 100644 --- a/src/article-api/transformers/github-apps-transformer.ts +++ b/src/article-api/transformers/github-apps-transformer.ts @@ -173,6 +173,11 @@ export class GithubAppsTransformer implements PageTransformer { introMarkdown += `${templateData.manualContent}\n\n` } + // Add token type legend (only for GitHub App permissions, not fine-grained PAT) + if (pageType === 'server-to-server-permissions') { + introMarkdown += `**Token types:** UAT = user access token, IAT = installation access token\n\n` + } + // Build the tables manually let tablesMarkdown = '' for (const item of templateData.items as PreparedPermissionItem[]) { @@ -180,21 +185,19 @@ export class GithubAppsTransformer implements PageTransformer { tablesMarkdown += '| Endpoint | Access | Tokens | Additional Permissions |\n' tablesMarkdown += '|----------|--------|--------|------------------------|\n' + const isFineGrainedPat = pageType === 'fine-grained-pat-permissions' + for (const perm of item.permissions) { - const lang = context.currentLanguage || 'en' - const version = - context.currentVersion === 'free-pro-team@latest' ? '' : `${context.currentVersion}/` - const endpoint = `[\`${perm.verb} ${perm.requestPath}\`](/${lang}/${version}rest/${perm.category}#${perm.slug})` - - let tokens = '' - if (perm.userToServer) { - tokens += `[UAT](/${lang}/${version}apps/creating-github-apps/authenticating-with-a-github-app/authenticating-with-a-github-app-on-behalf-of-a-user)` - } - if (perm.userToServer && perm.serverToServer) { - tokens += '
' - } - if (perm.serverToServer) { - tokens += `[IAT](/${lang}/${version}apps/creating-github-apps/authenticating-with-a-github-app/authenticating-as-a-github-app-installation)` + const endpoint = `\`${perm.verb} ${perm.requestPath}\`` + + let tokens: string + if (isFineGrainedPat) { + tokens = 'PAT' + } else { + const tokenParts: string[] = [] + if (perm.userToServer) tokenParts.push('UAT') + if (perm.serverToServer) tokenParts.push('IAT') + tokens = tokenParts.join(', ') || 'None' } const additionalPerms = perm.additionalPermissions ? '✓' : '✗' From 385b8212752ee18b7afee194498ede08714c219a Mon Sep 17 00:00:00 2001 From: Tadas Labudis Date: Thu, 12 Mar 2026 08:20:29 +0000 Subject: [PATCH 5/6] Add issue fields documentation for limited public preview (#59982) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../about-issue-fields.md | 62 ++++++++ .../understanding-fields/index.md | 1 + .../adding-and-managing-issue-fields.md | 88 ++++++++++++ ...-and-searching-issues-and-pull-requests.md | 19 ++- .../using-issues/index.md | 2 + ...aging-issue-fields-in-your-organization.md | 134 ++++++++++++++++++ data/features/issue-fields.yml | 4 + .../issue-fields-public-preview-note.md | 2 + 8 files changed, 311 insertions(+), 1 deletion(-) create mode 100644 content/issues/planning-and-tracking-with-projects/understanding-fields/about-issue-fields.md create mode 100644 content/issues/tracking-your-work-with-issues/using-issues/adding-and-managing-issue-fields.md create mode 100644 content/issues/tracking-your-work-with-issues/using-issues/managing-issue-fields-in-your-organization.md create mode 100644 data/features/issue-fields.yml create mode 100644 data/reusables/issues/issue-fields-public-preview-note.md diff --git a/content/issues/planning-and-tracking-with-projects/understanding-fields/about-issue-fields.md b/content/issues/planning-and-tracking-with-projects/understanding-fields/about-issue-fields.md new file mode 100644 index 000000000000..4071889fa0e0 --- /dev/null +++ b/content/issues/planning-and-tracking-with-projects/understanding-fields/about-issue-fields.md @@ -0,0 +1,62 @@ +--- +title: About issue fields in projects +shortTitle: About issue fields +intro: 'Learn how to use organization-level issue fields in your projects to track structured metadata like priority, effort, and dates.' +versions: + feature: issue-fields +type: tutorial +topics: + - Projects + - Issues +--- + +{% data reusables.issues.issue-fields-public-preview-note %} + +Issue fields are organization-level fields that provide consistent, typed metadata across all repositories. Unlike project custom fields, issue fields are defined once at the organization level and are available on every issue and in every project across the organization. For more information on creating and managing issue fields, see [AUTOTITLE](/issues/tracking-your-work-with-issues/using-issues/managing-issue-fields-in-your-organization). + +> [!NOTE] +> Issue fields are currently only supported in private projects. Issue fields are not available in public projects. + +## Adding an issue field to a project + +To display issue field values in a project: + +1. Open a project and select a view using the table layout. +1. Click {% octicon "plus" aria-label="Add field" %} in the table header. +1. Click **Add field**. +1. Select one or more issue fields from the list of available fields in the organization. +1. Click **Add**. + +The issue field appears as a column in the table view. + +## Removing an issue field from a project + +To remove an issue field from a project: + +1. Click {% octicon "kebab-horizontal" aria-label="open field options" %} in the top right corner of the project page. +1. Click **Settings**. +1. In the left sidebar, select the issue field you want to remove. +1. Click **Remove field**. + +Removing an issue field from a project does not delete the field or its values from the organization. The field can be re-added at any time. + +## Editing issue field values in a project + +You can edit issue field values directly in the project table view without opening the issue. Click on a cell in the issue field column to set or change the value. Changes are synced back to the issue automatically. + +## Grouping, filtering, and sorting + +You can group, filter, and sort project views by issue field values, just like any other project field. This works in both table and board layouts. + +You can also use issue fields to group by column on the board layout. + +## Charts and insights + +Issue fields are available as data sources in project charts. You can create charts that group or segment by issue field values to visualize trends across your organization. + +## Limits + +Projects support up to 50 fields in total. Issue fields and system fields count toward this limit. If a project is already at the field limit, you need to remove existing fields before issue fields can be added. + +> [!NOTE] +> Issue fields only apply to issues owned by the same organization. If a project contains pull requests, draft issues, or issues from another organization, issue field columns show empty cells for those items. diff --git a/content/issues/planning-and-tracking-with-projects/understanding-fields/index.md b/content/issues/planning-and-tracking-with-projects/understanding-fields/index.md index 89a7fbd87e9a..a24839b4c1c3 100644 --- a/content/issues/planning-and-tracking-with-projects/understanding-fields/index.md +++ b/content/issues/planning-and-tracking-with-projects/understanding-fields/index.md @@ -9,6 +9,7 @@ children: - /about-date-fields - /about-single-select-fields - /about-iteration-fields + - /about-issue-fields - /about-parent-issue-and-sub-issue-progress-fields - /about-pull-request-fields - /about-the-issue-type-field diff --git a/content/issues/tracking-your-work-with-issues/using-issues/adding-and-managing-issue-fields.md b/content/issues/tracking-your-work-with-issues/using-issues/adding-and-managing-issue-fields.md new file mode 100644 index 000000000000..8fc2e8fb8267 --- /dev/null +++ b/content/issues/tracking-your-work-with-issues/using-issues/adding-and-managing-issue-fields.md @@ -0,0 +1,88 @@ +--- +title: Adding and managing issue fields +intro: 'You can set, edit, and clear issue field values on individual issues to capture structured metadata for your team.' +versions: + feature: issue-fields +type: how_to +topics: + - Project management +shortTitle: 'Using issue fields' +permissions: 'People with triage access or greater to a repository can set and edit issue field values.' +--- + +{% data reusables.issues.issue-fields-public-preview-note %} + +Issue fields appear in the right-hand sidebar of issues, alongside system fields like assignees, labels, and type. You can set values when creating or editing an issue. When you select an issue type while creating an issue, any fields pinned to that type automatically appear in the sidebar. + +## Setting a field value + +1. Navigate to the issue you want to update. +1. In the right sidebar, if the field you want is not already visible, click **Add field**. +1. From the dropdown, select the field you want to add. +1. Set the value: + * For **single-select** fields, choose an option from the dropdown. + * For **text** fields, type your value. URLs are automatically detected and displayed as links. + * For **number** fields, enter a numeric value. + * For **date** fields, use the date picker to select a date, or type the date directly. +1. Changes are saved automatically. + +## Editing a field value + +1. Navigate to the issue. +1. In the right sidebar, click on the field value you want to change. +1. Select a new value or type a new entry. +1. Changes are saved automatically. + +## Clearing a field value + +1. Navigate to the issue. +1. In the right sidebar, click on the field value. +1. Clear the value: + * For **single-select** fields, click the currently selected option to deselect it. + * For **text** and **number** fields, delete all text in the input. + * For **date** fields, click the clear button in the date picker. +1. After clearing, the field is removed from the sidebar. It can be re-added using the **Add field** button. + +## Pinned fields + +If your organization administrator has pinned fields to specific issue types, those fields automatically appear in the sidebar and the issue creation modal when you create or view an issue of that type. You do not need to manually add pinned fields. + +## Viewing field changes in the timeline + +When a field value is changed, the update is recorded in the issue timeline. The timeline entry shows: +* Which field was changed +* The new value that was set +* Who made the change +* When the change was made + +Timeline events for fields set to "Organization only" visibility are hidden from users who are not organization members or collaborators. + +## Field visibility + +Organization administrators can set each field's visibility to "Organization only" or "Public". This affects what you see: + +* If a field is set to **Organization only**, it is only visible to organization members and repository collaborators with at least read access. If you are not a member or collaborator, the field does not appear in the issue sidebar, timeline, or search suggestions. +* If a field is set to **Public**, it is visible to anyone viewing the issue. + +For more information about configuring visibility, see [AUTOTITLE](/issues/tracking-your-work-with-issues/using-issues/managing-issue-fields-in-your-organization#setting-field-visibility). + +## Using issue fields in projects + +Issue fields can be added as columns in project views, where you can edit values, group, filter, sort, and build charts. For more information, see [AUTOTITLE](/issues/planning-and-tracking-with-projects/understanding-fields/about-issue-fields). + +## Searching by field values + +You can filter and search for issues based on field values on both the issues dashboard and your repository's issues page. In the search bar, type `field.` followed by the field name and value. For example: + +* `field.priority:high` to find issues with priority set to "high" +* `field."target date":>=2026-03-01` to find issues with a target date on or after March 1, 2026 +* `field.priority:high,medium` to find issues with priority set to "high" or "medium" + +For more information, see [AUTOTITLE](/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests). + +## Using issue fields with the API + +Issue fields have full REST and GraphQL API support. You can automate field management, set values programmatically, and integrate with external tools. + +- **Managing fields**: Create, update, and delete organization-level fields. See the [Organization issue fields REST API](/rest/orgs/issue-fields). +- **Using fields**: Get, set, and clear field values on individual issues. See the [Issue field values REST API](/rest/issues/issue-field-values). diff --git a/content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md b/content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md index fd2ac30ff565..054989f86d9b 100644 --- a/content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md +++ b/content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md @@ -144,6 +144,22 @@ If your organization uses issue types, you can filter issues for a particular ty {% endif %} +{% ifversion issue-fields %} + +## Filtering by issue fields + +If your organization uses issue fields, you can filter issues by field values. Type `field.` followed by the field name and value in your filter. Field names with spaces should be enclosed in quotes. + +Examples: +* `field.priority:high` -- find issues with priority set to "high" +* `field."target date":>=2026-03-01` -- find issues with a target date on or after March 1, 2026 +* `field.story-points:>5` -- find issues with a number field value greater than 5 +* `field.priority:high,medium` -- find issues with priority set to "high" or "medium" + +For more information about managing issue fields, see [AUTOTITLE](/issues/tracking-your-work-with-issues/using-issues/managing-issue-fields-in-your-organization). + +{% endif %} + ## Filtering pull requests by review status You can use filters to list pull requests by review status and to find pull requests that you've reviewed or other people have asked you to review. @@ -222,7 +238,8 @@ For issues, you can also use search to: * Filter for issues that are linked to a pull request by a closing reference: `linked:pr` * Filter issues by the reason they were closed: `is:closed reason:completed` or `is:closed reason:"not planned"` -{% ifversion issue-types %}* Filter for issues with a particular type: `is:open type:"Bug"`{% endif %}{% ifversion issues-advanced-search %} +{% ifversion issue-types %}* Filter for issues with a particular type: `is:open type:"Bug"`{% endif %}{% ifversion issue-fields %} +* Filter for issues by field value: `is:open field.priority:high`{% endif %}{% ifversion issues-advanced-search %} * Filter for issues that have metadata: `has:label` * Filter for issues that are missing metadata: `no:project` * Filter for issues from repositories [**owned**](/search-github/searching-on-github/searching-issues-and-pull-requests#search-within-a-users-or-organizations-repositories) by a certain user or organization, limited to up to 16 `user` and `org` qualifiers with no limit on `repo` qualifiers: `state:open is:issue org:github OR user:octocat`{% endif %} diff --git a/content/issues/tracking-your-work-with-issues/using-issues/index.md b/content/issues/tracking-your-work-with-issues/using-issues/index.md index 1db3a6af357a..a5f690ae3523 100644 --- a/content/issues/tracking-your-work-with-issues/using-issues/index.md +++ b/content/issues/tracking-your-work-with-issues/using-issues/index.md @@ -18,4 +18,6 @@ children: - /linking-a-pull-request-to-an-issue - /about-slash-commands - /managing-issue-types-in-an-organization + - /managing-issue-fields-in-your-organization + - /adding-and-managing-issue-fields --- diff --git a/content/issues/tracking-your-work-with-issues/using-issues/managing-issue-fields-in-your-organization.md b/content/issues/tracking-your-work-with-issues/using-issues/managing-issue-fields-in-your-organization.md new file mode 100644 index 000000000000..ba956198232a --- /dev/null +++ b/content/issues/tracking-your-work-with-issues/using-issues/managing-issue-fields-in-your-organization.md @@ -0,0 +1,134 @@ +--- +title: Managing issue fields in your organization +intro: 'You can create and manage custom issue fields to collect structured metadata across all issues in your organization.' +redirect_from: + - /issues/tracking-your-work-with-issues/using-issues/managing-issue-fields-in-an-organization +versions: + feature: issue-fields +type: overview +topics: + - Project management +shortTitle: 'Managing issue fields' +permissions: 'Organization owners can create and manage issue fields.' +--- + +{% data reusables.issues.issue-fields-public-preview-note %} + +Issue fields let you add structured metadata to issues across your organization. Instead of relying on labels or free-text workarounds, you can create fields like priority, effort, impact, or any custom category your team needs. Fields are defined at the organization level and apply across all repositories in your organization. + +## About issue field types + +You can create up to 25 issue fields per organization. The following field types are available: + +* **Single-select**: choose one option from a predefined list. Options can have names, descriptions, and colors. +* **Text**: capture free-form text. URLs are automatically detected and displayed as clickable links. +* **Number**: accept numeric input, including decimals. +* **Date**: provide a date picker for selecting dates. + +## Default fields + +When issue fields are enabled for your organization, four default fields are created automatically: + +* **Priority** (single-select): Urgent, High, Medium, Low +* **Effort** (single-select): High, Medium, Low +* **Start date** (date) +* **Target date** (date) + +These default fields are fully customizable. You can edit their names, descriptions, and options, or delete them if they don't fit your workflow. + +## Creating an issue field + +{% data reusables.profile.access_org %} +{% data reusables.profile.org_settings %} +1. In the "Planning" section of the sidebar, click **Issue fields**. +1. Click **New field**. +1. Under "Field name", type the name of your new field. +1. Optionally, under "Description", type a description to help others understand the purpose of the field. +1. Under "Field type", select the type of field you want to create. +1. If you selected **Single-select**, add options for the field: + * Click **Add option** and type the option name. + * Optionally, to set a color for an option, click {% octicon "kebab-horizontal" aria-label="open option menu" %} next to the option, click **Edit option**, choose a color, and click **Save**. + * Repeat to add more options. +1. Under "Field Visibility", choose one of the following: + * **Permissions**: choose who can see the field and its value. Options are **Organization only** (default) or **Public**. This setting only applies to issues in public repositories. + * **Pin to types**: click {% octicon "pencil" aria-label="edit pinning" %} to choose which issue types show this field in the issue viewer and creator. Select one or more issue types, or "Issues without a type". Fields that are not pinned and have no value will stay hidden in the issue viewer and creator. +1. Click **Create**. + +## Editing an issue field + +{% data reusables.profile.access_org %} +{% data reusables.profile.org_settings %} +1. In the "Planning" section of the sidebar, click **Issue fields**. +1. To the right of the field you want to edit, click {% octicon "kebab-horizontal" aria-label="open field options" %}. +1. Click **Edit** and make your changes. +1. Click **Save field**. + +## Deleting an issue field + +When you delete an issue field, all values set on issues for that field are permanently removed. + +{% data reusables.profile.access_org %} +{% data reusables.profile.org_settings %} +1. In the "Planning" section of the sidebar, click **Issue fields**. +1. To the right of the field you want to delete, click {% octicon "kebab-horizontal" aria-label="open field options" %}. +1. Click **Delete** and confirm the deletion. + +## Reordering issue fields + +The order of pinned fields is managed per issue type. The field order determines how fields appear in the issue sidebar and the issue creation modal. + +{% data reusables.profile.access_org %} +{% data reusables.profile.org_settings %} +1. In the "Planning" section of the sidebar, click **Issue types**. +1. Click the issue type you want to reorder fields for. +1. Under "Pinned issue fields", drag fields to reorder them. +1. Click **Save**. + +## Pinning fields to issue types + +You can associate issue fields with specific issue types so that only the most relevant fields appear when creating or viewing issues of that type. For example, you can pin "Severity" to bugs and "Impact" to features. + +{% data reusables.profile.access_org %} +{% data reusables.profile.org_settings %} +1. In the "Planning" section of the sidebar, click **Issue fields**. +1. Click the field you want to pin. +1. Under "Pin to types", click {% octicon "pencil" aria-label="edit pinning" %} and select the issue types this field should appear on. +1. Click **Save field**. + +Pinned fields automatically appear in the issue sidebar based on the selected issue type. To pin fields to issues that have no type, select the "Issues without a type" option. + +> [!NOTE] +> Fields must be pinned to at least one issue type, or to "Issues without a type", to appear in the issue sidebar. Fields that are not pinned to any type are only accessible via the **Add field** button or in projects. + +## Setting field visibility + +For organizations with public repositories, you can control whether each issue field is visible to everyone or only to organization members and collaborators. + +{% data reusables.profile.access_org %} +{% data reusables.profile.org_settings %} +1. In the "Planning" section of the sidebar, click **Issue fields**. +1. To the right of the field, click {% octicon "kebab-horizontal" aria-label="open field options" %}. +1. Click **Edit**. +1. Under "Field Visibility", choose one of the following: + * **Organization only**: the field is visible only to organization members and repository collaborators with at least read access. + * **Public**: the field is visible to anyone viewing the issue. +1. Click **Save**. + +By default, all new and existing fields are set to "Organization only". Visibility settings are enforced across the web UI, API, issue timeline events, and search suggestions. + +## Issue fields and projects + +Issue fields are available in any project across your organization. For details on adding, removing, and editing issue fields in projects, see [AUTOTITLE](/issues/tracking-your-work-with-issues/using-issues/adding-and-managing-issue-fields#using-issue-fields-in-projects). + +### Field limits in projects + +Projects support up to 50 fields in total, and issue fields and system fields count toward this limit. If a project is already at the field limit, you need to remove existing fields before issue fields can be added. + +## Limits + +| Resource | Limit | +|----------|-------| +| Issue fields per organization | 25 | +| Options per single-select field | 50 | +| Pinned fields per issue type | 10 | +| Total fields in a project (including issue fields and system fields) | 50 | diff --git a/data/features/issue-fields.yml b/data/features/issue-fields.yml new file mode 100644 index 000000000000..e5a59082ca8c --- /dev/null +++ b/data/features/issue-fields.yml @@ -0,0 +1,4 @@ +# Reference: github/releases#7336 +versions: + fpt: '*' + ghec: '*' diff --git a/data/reusables/issues/issue-fields-public-preview-note.md b/data/reusables/issues/issue-fields-public-preview-note.md new file mode 100644 index 000000000000..d4e35550e44b --- /dev/null +++ b/data/reusables/issues/issue-fields-public-preview-note.md @@ -0,0 +1,2 @@ +> [!NOTE] +> Issue fields are currently in {% data variables.release-phases.public_preview %} and subject to change. To share feedback, see the [community discussion](https://github.com/orgs/community/discussions/189141). From 81fab0151facf25b25a5c8b97ec62e15eac13f64 Mon Sep 17 00:00:00 2001 From: docs-bot <77750099+docs-bot@users.noreply.github.com> Date: Thu, 12 Mar 2026 03:08:08 -0700 Subject: [PATCH 6/6] Update OpenAPI Description (#60181) Co-authored-by: felix --- src/webhooks/data/fpt/schema.json | 530 ++++++++++++++++++++++++ src/webhooks/data/ghec/schema.json | 530 ++++++++++++++++++++++++ src/webhooks/data/ghes-3.14/schema.json | 362 ++++++++++++++++ src/webhooks/data/ghes-3.15/schema.json | 362 ++++++++++++++++ src/webhooks/data/ghes-3.16/schema.json | 362 ++++++++++++++++ src/webhooks/data/ghes-3.17/schema.json | 362 ++++++++++++++++ src/webhooks/data/ghes-3.18/schema.json | 362 ++++++++++++++++ src/webhooks/data/ghes-3.19/schema.json | 434 +++++++++++++++++++ src/webhooks/data/ghes-3.20/schema.json | 434 +++++++++++++++++++ src/webhooks/lib/config.json | 2 +- 10 files changed, 3739 insertions(+), 1 deletion(-) diff --git a/src/webhooks/data/fpt/schema.json b/src/webhooks/data/fpt/schema.json index 12f7db7a2bf6..d3d6ed439391 100644 --- a/src/webhooks/data/fpt/schema.json +++ b/src/webhooks/data/fpt/schema.json @@ -2515,6 +2515,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -4653,6 +4658,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -6792,6 +6802,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -8943,6 +8958,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -28227,6 +28247,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -29209,6 +29235,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -46132,6 +46164,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -61343,6 +61381,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -63845,6 +63889,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -65313,6 +65363,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -67222,6 +67278,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -69724,6 +69786,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -71192,6 +71260,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -73101,6 +73175,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -74569,6 +74649,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -76423,6 +76509,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -78980,6 +79072,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -80448,6 +80546,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -82302,6 +82406,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -101001,6 +101111,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_downloads", @@ -109567,6 +109683,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -145974,6 +146096,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -146981,6 +147109,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -149241,6 +149375,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_pages", @@ -150268,6 +150408,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -152554,6 +152700,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -153561,6 +153713,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -156851,6 +157009,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -157833,6 +157997,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -160536,6 +160706,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -161518,6 +161694,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -163450,6 +163632,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -164457,6 +164645,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -166737,6 +166931,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -167744,6 +167944,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -171119,6 +171325,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -172101,6 +172313,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -173799,6 +174017,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -174806,6 +175030,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -177137,6 +177367,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -178144,6 +178380,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -180425,6 +180667,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -181432,6 +181680,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -183945,6 +184199,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -184952,6 +185212,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -188236,6 +188502,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -189218,6 +189490,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -191921,6 +192199,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -192903,6 +193187,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -195606,6 +195896,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -196588,6 +196884,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -198287,6 +198589,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -199294,6 +199602,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -201871,6 +202185,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -202878,6 +203198,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -205454,6 +205780,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -206461,6 +206793,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -208868,6 +209206,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -209875,6 +210219,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -212206,6 +212556,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -213213,6 +213569,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -215493,6 +215855,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -216500,6 +216868,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -218776,6 +219150,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -219761,6 +220141,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -221882,6 +222268,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -222868,6 +223260,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -225010,6 +225408,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -225996,6 +226400,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -228113,6 +228523,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -229100,6 +229516,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -234680,6 +235102,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -235667,6 +236095,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -238022,6 +238456,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -238965,6 +239405,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -241472,6 +241918,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -242415,6 +242867,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -274773,6 +275231,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -276242,6 +276706,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -278098,6 +278568,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -280654,6 +281130,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -282123,6 +282605,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -283979,6 +284467,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -286535,6 +287029,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -288004,6 +288504,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -289860,6 +290366,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -292416,6 +292928,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -293885,6 +294403,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -295741,6 +296265,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", diff --git a/src/webhooks/data/ghec/schema.json b/src/webhooks/data/ghec/schema.json index 0688139d0b85..ee9a656d5ad0 100644 --- a/src/webhooks/data/ghec/schema.json +++ b/src/webhooks/data/ghec/schema.json @@ -4530,6 +4530,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -6684,6 +6689,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -8839,6 +8849,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -11006,6 +11021,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -30306,6 +30326,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -31288,6 +31314,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -48211,6 +48243,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -69469,6 +69507,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -71971,6 +72015,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -73439,6 +73489,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -75348,6 +75404,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -77850,6 +77912,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -79318,6 +79386,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -81227,6 +81301,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -82695,6 +82775,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -84549,6 +84635,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -87106,6 +87198,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -88574,6 +88672,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -90428,6 +90532,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -109127,6 +109237,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_downloads", @@ -117693,6 +117809,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -154480,6 +154602,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -155487,6 +155615,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -157747,6 +157881,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_pages", @@ -158774,6 +158914,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -161060,6 +161206,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -162067,6 +162219,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -165357,6 +165515,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -166339,6 +166503,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -169042,6 +169212,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -170024,6 +170200,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -171956,6 +172138,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -172963,6 +173151,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -175243,6 +175437,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -176250,6 +176450,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -179625,6 +179831,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -180607,6 +180819,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -182305,6 +182523,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -183312,6 +183536,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -185643,6 +185873,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -186650,6 +186886,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -188931,6 +189173,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -189938,6 +190186,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -192451,6 +192705,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -193458,6 +193718,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -196742,6 +197008,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -197724,6 +197996,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -200427,6 +200705,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -201409,6 +201693,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -204112,6 +204402,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -205094,6 +205390,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -206793,6 +207095,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -207800,6 +208108,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -210377,6 +210691,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -211384,6 +211704,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -213960,6 +214286,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -214967,6 +215299,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -217374,6 +217712,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -218381,6 +218725,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -220712,6 +221062,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -221719,6 +222075,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -223999,6 +224361,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -225006,6 +225374,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -227282,6 +227656,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -228267,6 +228647,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -230388,6 +230774,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -231374,6 +231766,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -233516,6 +233914,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -234502,6 +234906,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -236619,6 +237029,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -237606,6 +238022,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -243186,6 +243608,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -244173,6 +244601,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -246528,6 +246962,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -247471,6 +247911,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -249978,6 +250424,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -250921,6 +251373,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -283298,6 +283756,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -284767,6 +285231,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -286623,6 +287093,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -289179,6 +289655,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -290648,6 +291130,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -292504,6 +292992,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -295060,6 +295554,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -296529,6 +297029,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -298385,6 +298891,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -300941,6 +301453,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -302410,6 +302928,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -304266,6 +304790,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", diff --git a/src/webhooks/data/ghes-3.14/schema.json b/src/webhooks/data/ghes-3.14/schema.json index 9a48b3b6af0c..6d07fc3de158 100644 --- a/src/webhooks/data/ghes-3.14/schema.json +++ b/src/webhooks/data/ghes-3.14/schema.json @@ -4519,6 +4519,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -6532,6 +6537,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -8546,6 +8556,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -10572,6 +10587,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -27062,6 +27082,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -28044,6 +28070,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -44967,6 +44999,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -74404,6 +74442,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_downloads", @@ -82970,6 +83014,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -112017,6 +112067,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -113024,6 +113080,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -115284,6 +115346,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_pages", @@ -116311,6 +116379,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -118597,6 +118671,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -119604,6 +119684,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -122894,6 +122980,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -123876,6 +123968,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -126579,6 +126677,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -127561,6 +127665,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -129493,6 +129603,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -130500,6 +130616,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -133854,6 +133976,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -134836,6 +134964,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -136585,6 +136719,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -137592,6 +137732,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -139873,6 +140019,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -140880,6 +141032,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -143393,6 +143551,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -144400,6 +144564,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -147684,6 +147854,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -148666,6 +148842,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -151369,6 +151551,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -152351,6 +152539,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -155054,6 +155248,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -156036,6 +156236,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -157735,6 +157941,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -158742,6 +158954,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -161319,6 +161537,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -162326,6 +162550,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -164902,6 +165132,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -165909,6 +166145,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -168316,6 +168558,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -169323,6 +169571,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -171654,6 +171908,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -172661,6 +172921,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -174941,6 +175207,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -175948,6 +176220,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -178224,6 +178502,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -179209,6 +179493,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -181330,6 +181620,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -182316,6 +182612,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -184458,6 +184760,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -185444,6 +185752,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -187561,6 +187875,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -188548,6 +188868,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -194128,6 +194454,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -195115,6 +195447,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -197470,6 +197808,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -198413,6 +198757,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -200920,6 +201270,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -201863,6 +202219,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", diff --git a/src/webhooks/data/ghes-3.15/schema.json b/src/webhooks/data/ghes-3.15/schema.json index 7194c9479981..b5200fc7cce2 100644 --- a/src/webhooks/data/ghes-3.15/schema.json +++ b/src/webhooks/data/ghes-3.15/schema.json @@ -4608,6 +4608,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -6647,6 +6652,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -8687,6 +8697,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -10739,6 +10754,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -27245,6 +27265,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -28227,6 +28253,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -45150,6 +45182,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -74587,6 +74625,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_downloads", @@ -83153,6 +83197,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -112200,6 +112250,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -113207,6 +113263,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -115467,6 +115529,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_pages", @@ -116494,6 +116562,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -118780,6 +118854,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -119787,6 +119867,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -123077,6 +123163,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -124059,6 +124151,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -126762,6 +126860,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -127744,6 +127848,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -129676,6 +129786,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -130683,6 +130799,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -134037,6 +134159,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -135019,6 +135147,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -136768,6 +136902,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -137775,6 +137915,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -140056,6 +140202,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -141063,6 +141215,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -143576,6 +143734,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -144583,6 +144747,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -147867,6 +148037,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -148849,6 +149025,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -151552,6 +151734,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -152534,6 +152722,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -155237,6 +155431,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -156219,6 +156419,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -157918,6 +158124,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -158925,6 +159137,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -161502,6 +161720,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -162509,6 +162733,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -165085,6 +165315,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -166092,6 +166328,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -168499,6 +168741,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -169506,6 +169754,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -171837,6 +172091,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -172844,6 +173104,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -175124,6 +175390,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -176131,6 +176403,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -178407,6 +178685,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -179392,6 +179676,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -181513,6 +181803,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -182499,6 +182795,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -184641,6 +184943,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -185627,6 +185935,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -187744,6 +188058,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -188731,6 +189051,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -194311,6 +194637,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -195298,6 +195630,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -197653,6 +197991,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -198596,6 +198940,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -201103,6 +201453,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -202046,6 +202402,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", diff --git a/src/webhooks/data/ghes-3.16/schema.json b/src/webhooks/data/ghes-3.16/schema.json index 7a1226a724b6..c6c571d27ae6 100644 --- a/src/webhooks/data/ghes-3.16/schema.json +++ b/src/webhooks/data/ghes-3.16/schema.json @@ -4608,6 +4608,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -6647,6 +6652,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -8687,6 +8697,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -10739,6 +10754,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -27374,6 +27394,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -28356,6 +28382,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -45279,6 +45311,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -76731,6 +76769,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_downloads", @@ -85297,6 +85341,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -114344,6 +114394,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -115351,6 +115407,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -117611,6 +117673,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_pages", @@ -118638,6 +118706,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -120924,6 +120998,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -121931,6 +122011,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -125221,6 +125307,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -126203,6 +126295,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -128906,6 +129004,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -129888,6 +129992,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -131820,6 +131930,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -132827,6 +132943,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -136181,6 +136303,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -137163,6 +137291,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -138912,6 +139046,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -139919,6 +140059,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -142200,6 +142346,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -143207,6 +143359,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -145720,6 +145878,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -146727,6 +146891,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -150011,6 +150181,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -150993,6 +151169,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -153696,6 +153878,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -154678,6 +154866,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -157381,6 +157575,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -158363,6 +158563,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -160062,6 +160268,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -161069,6 +161281,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -163646,6 +163864,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -164653,6 +164877,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -167229,6 +167459,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -168236,6 +168472,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -170643,6 +170885,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -171650,6 +171898,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -173981,6 +174235,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -174988,6 +175248,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -177268,6 +177534,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -178275,6 +178547,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -180551,6 +180829,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -181536,6 +181820,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -183657,6 +183947,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -184643,6 +184939,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -186785,6 +187087,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -187771,6 +188079,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -189888,6 +190202,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -190875,6 +191195,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -196455,6 +196781,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -197442,6 +197774,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -199797,6 +200135,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -200740,6 +201084,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -203247,6 +203597,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -204190,6 +204546,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", diff --git a/src/webhooks/data/ghes-3.17/schema.json b/src/webhooks/data/ghes-3.17/schema.json index c8ad65056610..cc3078dcc55a 100644 --- a/src/webhooks/data/ghes-3.17/schema.json +++ b/src/webhooks/data/ghes-3.17/schema.json @@ -4608,6 +4608,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -6663,6 +6668,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -8719,6 +8729,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -10787,6 +10802,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -27438,6 +27458,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -28420,6 +28446,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -45343,6 +45375,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -80827,6 +80865,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_downloads", @@ -89393,6 +89437,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -118440,6 +118490,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -119447,6 +119503,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -121707,6 +121769,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_pages", @@ -122734,6 +122802,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -125020,6 +125094,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -126027,6 +126107,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -129317,6 +129403,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -130299,6 +130391,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -133002,6 +133100,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -133984,6 +134088,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -135916,6 +136026,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -136923,6 +137039,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -140277,6 +140399,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -141259,6 +141387,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -143008,6 +143142,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -144015,6 +144155,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -146296,6 +146442,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -147303,6 +147455,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -149816,6 +149974,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -150823,6 +150987,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -154107,6 +154277,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -155089,6 +155265,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -157792,6 +157974,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -158774,6 +158962,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -161477,6 +161671,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -162459,6 +162659,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -164158,6 +164364,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -165165,6 +165377,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -167742,6 +167960,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -168749,6 +168973,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -171325,6 +171555,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -172332,6 +172568,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -174739,6 +174981,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -175746,6 +175994,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -178077,6 +178331,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -179084,6 +179344,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -181364,6 +181630,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -182371,6 +182643,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -184647,6 +184925,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -185632,6 +185916,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -187753,6 +188043,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -188739,6 +189035,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -190881,6 +191183,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -191867,6 +192175,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -193984,6 +194298,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -194971,6 +195291,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -200551,6 +200877,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -201538,6 +201870,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -203893,6 +204231,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -204836,6 +205180,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -207343,6 +207693,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -208286,6 +208642,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", diff --git a/src/webhooks/data/ghes-3.18/schema.json b/src/webhooks/data/ghes-3.18/schema.json index 474e55f1b8a7..67e8e0dc8d18 100644 --- a/src/webhooks/data/ghes-3.18/schema.json +++ b/src/webhooks/data/ghes-3.18/schema.json @@ -4608,6 +4608,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -6668,6 +6673,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -8729,6 +8739,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -10802,6 +10817,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -27581,6 +27601,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -28563,6 +28589,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -45486,6 +45518,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -80970,6 +81008,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_downloads", @@ -89536,6 +89580,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -118583,6 +118633,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -119590,6 +119646,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -121850,6 +121912,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_pages", @@ -122877,6 +122945,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -125163,6 +125237,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -126170,6 +126250,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -129460,6 +129546,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -130442,6 +130534,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -133145,6 +133243,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -134127,6 +134231,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -136059,6 +136169,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -137066,6 +137182,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -140420,6 +140542,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -141402,6 +141530,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -143151,6 +143285,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -144158,6 +144298,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -146439,6 +146585,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -147446,6 +147598,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -149959,6 +150117,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -150966,6 +151130,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -154250,6 +154420,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -155232,6 +155408,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -157935,6 +158117,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -158917,6 +159105,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -161620,6 +161814,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -162602,6 +162802,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -164301,6 +164507,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -165308,6 +165520,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -167885,6 +168103,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -168892,6 +169116,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -171468,6 +171698,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -172475,6 +172711,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -174882,6 +175124,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -175889,6 +176137,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -178220,6 +178474,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -179227,6 +179487,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -181507,6 +181773,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -182514,6 +182786,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -184790,6 +185068,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -185775,6 +186059,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -187896,6 +188186,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -188882,6 +189178,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -191024,6 +191326,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -192010,6 +192318,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -194127,6 +194441,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -195114,6 +195434,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -200694,6 +201020,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -201681,6 +202013,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -204036,6 +204374,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -204979,6 +205323,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -207486,6 +207836,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -208429,6 +208785,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", diff --git a/src/webhooks/data/ghes-3.19/schema.json b/src/webhooks/data/ghes-3.19/schema.json index 5422beeb2784..d6b09ee6c43e 100644 --- a/src/webhooks/data/ghes-3.19/schema.json +++ b/src/webhooks/data/ghes-3.19/schema.json @@ -4608,6 +4608,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -6668,6 +6673,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -8729,6 +8739,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -10802,6 +10817,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -27581,6 +27601,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -28563,6 +28589,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -45486,6 +45518,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -64830,6 +64868,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -67332,6 +67376,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -68800,6 +68850,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -70709,6 +70765,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -73211,6 +73273,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -74679,6 +74747,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -76588,6 +76662,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -78056,6 +78136,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -79910,6 +79996,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -82467,6 +82559,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -83935,6 +84033,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -85789,6 +85893,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -104488,6 +104598,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_downloads", @@ -113054,6 +113170,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -142101,6 +142223,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -143108,6 +143236,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -145368,6 +145502,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_pages", @@ -146395,6 +146535,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -148681,6 +148827,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -149688,6 +149840,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -152978,6 +153136,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -153960,6 +154124,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -156663,6 +156833,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -157645,6 +157821,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -159577,6 +159759,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -160584,6 +160772,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -163938,6 +164132,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -164920,6 +165120,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -166669,6 +166875,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -167676,6 +167888,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -169957,6 +170175,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -170964,6 +171188,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -173477,6 +173707,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -174484,6 +174720,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -177768,6 +178010,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -178750,6 +178998,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -181453,6 +181707,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -182435,6 +182695,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -185138,6 +185404,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -186120,6 +186392,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -187819,6 +188097,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -188826,6 +189110,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -191403,6 +191693,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -192410,6 +192706,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -194986,6 +195288,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -195993,6 +196301,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -198400,6 +198714,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -199407,6 +199727,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -201738,6 +202064,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -202745,6 +203077,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -205025,6 +205363,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -206032,6 +206376,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -208308,6 +208658,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -209293,6 +209649,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -211414,6 +211776,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -212400,6 +212768,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -214542,6 +214916,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -215528,6 +215908,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -217645,6 +218031,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -218632,6 +219024,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -224212,6 +224610,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -225199,6 +225603,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -227554,6 +227964,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -228497,6 +228913,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -231004,6 +231426,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -231947,6 +232375,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", diff --git a/src/webhooks/data/ghes-3.20/schema.json b/src/webhooks/data/ghes-3.20/schema.json index 6804b2ed82dd..eeca94d3535d 100644 --- a/src/webhooks/data/ghes-3.20/schema.json +++ b/src/webhooks/data/ghes-3.20/schema.json @@ -4608,6 +4608,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -6668,6 +6673,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -8729,6 +8739,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -10802,6 +10817,11 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "" + }, { "type": "boolean", "name": "archived", @@ -28126,6 +28146,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -29108,6 +29134,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -46031,6 +46063,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -65375,6 +65413,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -67877,6 +67921,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -69345,6 +69395,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -71254,6 +71310,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -73756,6 +73818,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -75224,6 +75292,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -77133,6 +77207,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -78601,6 +78681,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -80455,6 +80541,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -83012,6 +83104,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -84480,6 +84578,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -86334,6 +86438,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -105033,6 +105143,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_downloads", @@ -113599,6 +113715,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -142646,6 +142768,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -143653,6 +143781,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -145913,6 +146047,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "has_pages", @@ -146940,6 +147080,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -149226,6 +149372,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -150233,6 +150385,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -153523,6 +153681,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -154505,6 +154669,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -157208,6 +157378,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -158190,6 +158366,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -160122,6 +160304,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -161129,6 +161317,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -164483,6 +164677,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -165465,6 +165665,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -167214,6 +167420,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -168221,6 +168433,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -170502,6 +170720,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -171509,6 +171733,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -174022,6 +174252,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -175029,6 +175265,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -178313,6 +178555,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -179295,6 +179543,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -181998,6 +182252,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -182980,6 +183240,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -185683,6 +185949,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -186665,6 +186937,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "boolean", "name": "archived", @@ -188364,6 +188642,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -189371,6 +189655,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -191948,6 +192238,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -192955,6 +193251,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -195531,6 +195833,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -196538,6 +196846,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -198945,6 +199259,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -199952,6 +200272,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -202283,6 +202609,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -203290,6 +203622,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -205570,6 +205908,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -206577,6 +206921,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -208853,6 +209203,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -209838,6 +210194,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -211959,6 +212321,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -212945,6 +213313,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -215087,6 +215461,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -216073,6 +216453,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -218190,6 +218576,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -219177,6 +219569,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -224757,6 +225155,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -225744,6 +226148,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -228099,6 +228509,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -229042,6 +229458,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -231549,6 +231971,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", @@ -232492,6 +232920,12 @@ "collaborators_only" ] }, + { + "type": "boolean", + "name": "has_commit_comments", + "description": "

Whether commit comments are enabled.

", + "default": true + }, { "type": "string or null", "name": "homepage", diff --git a/src/webhooks/lib/config.json b/src/webhooks/lib/config.json index 6d6cc913fb41..31da775a3246 100644 --- a/src/webhooks/lib/config.json +++ b/src/webhooks/lib/config.json @@ -1,3 +1,3 @@ { - "sha": "1f6b671050a3d8584111edcd52e6818892e9b4c9" + "sha": "4e819bd9aa9411232e1c34e7d1ffaaffc224e94b" } \ No newline at end of file