From 5222eb7463aaa3142d81843eb2c8d705d8c75599 Mon Sep 17 00:00:00 2001 From: Octokit Bot <33075676+octokitbot@users.noreply.github.com> Date: Tue, 5 Jan 2021 11:49:35 -0800 Subject: [PATCH] feat: check runs status & conclusion enums (#12) --- cache/api.github.com.deref.json | 91 ++++++++++++++++++++++++++++- cache/api.github.com.json | 27 ++++++++- cache/ghes-2.18.deref.json | 89 +++++++++++++++++++++++++++- cache/ghes-2.18.json | 25 +++++++- cache/ghes-2.19.deref.json | 89 +++++++++++++++++++++++++++- cache/ghes-2.19.json | 25 +++++++- cache/ghes-2.20.deref.json | 89 +++++++++++++++++++++++++++- cache/ghes-2.20.json | 25 +++++++- cache/ghes-2.21.deref.json | 89 +++++++++++++++++++++++++++- cache/ghes-2.21.json | 25 +++++++- cache/ghes-2.22.deref.json | 89 +++++++++++++++++++++++++++- cache/ghes-2.22.json | 25 +++++++- cache/github.ae.deref.json | 89 +++++++++++++++++++++++++++- cache/github.ae.json | 25 +++++++- generated/api.github.com.deref.json | 79 ++++++++++++++++++++++++- generated/api.github.com.json | 23 +++++++- generated/ghes-2.18.deref.json | 77 +++++++++++++++++++++++- generated/ghes-2.18.json | 21 ++++++- generated/ghes-2.19.deref.json | 77 +++++++++++++++++++++++- generated/ghes-2.19.json | 21 ++++++- generated/ghes-2.20.deref.json | 77 +++++++++++++++++++++++- generated/ghes-2.20.json | 21 ++++++- generated/ghes-2.21.deref.json | 77 +++++++++++++++++++++++- generated/ghes-2.21.json | 21 ++++++- generated/ghes-2.22.deref.json | 77 +++++++++++++++++++++++- generated/ghes-2.22.json | 21 ++++++- generated/github.ae.deref.json | 77 +++++++++++++++++++++++- generated/github.ae.json | 21 ++++++- 28 files changed, 1460 insertions(+), 32 deletions(-) diff --git a/cache/api.github.com.deref.json b/cache/api.github.com.deref.json index 54b258a9f..bc52ab768 100644 --- a/cache/api.github.com.deref.json +++ b/cache/api.github.com.deref.json @@ -117922,6 +117922,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -118643,6 +118652,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -119488,6 +119506,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -120272,11 +120299,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -122751,11 +122792,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -124092,6 +124147,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -136641,6 +136705,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -137304,11 +137377,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -139585,7 +139672,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], @@ -139685,7 +139772,7 @@ "/repos/{owner}/{repo}/community/profile": { "get": { "summary": "Get community profile metrics", - "description": "This endpoint will return all community profile metrics, including an\noverall health score, repository description, the presence of documentation, detected\ncode of conduct, detected license, and the presence of ISSUE\\_TEMPLATE, PULL\\_REQUEST\\_TEMPLATE,\nREADME, and CONTRIBUTING files.\n\n`content_reports_enabled` is only returned for organization-owned repositories.", + "description": "This endpoint will return all community profile metrics, including an\noverall health score, repository description, the presence of documentation, detected\ncode of conduct, detected license, and the presence of ISSUE\\_TEMPLATE, PULL\\_REQUEST\\_TEMPLATE,\nREADME, and CONTRIBUTING files.\n\nThe `health_percentage` score is defined as a percentage of how many of\nthese four documents are present: README, CONTRIBUTING, LICENSE, and\nCODE_OF_CONDUCT. For example, if all four documents are present, then\nthe `health_percentage` is `100`. If only one is present, then the\n`health_percentage` is `25`.\n\n`content_reports_enabled` is only returned for organization-owned repositories.", "tags": [ "repos" ], diff --git a/cache/api.github.com.json b/cache/api.github.com.json index 3db0f3aad..ce7968ff4 100644 --- a/cache/api.github.com.json +++ b/cache/api.github.com.json @@ -24612,7 +24612,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], @@ -24664,7 +24664,7 @@ "/repos/{owner}/{repo}/community/profile": { "get": { "summary": "Get community profile metrics", - "description": "This endpoint will return all community profile metrics, including an\noverall health score, repository description, the presence of documentation, detected\ncode of conduct, detected license, and the presence of ISSUE\\_TEMPLATE, PULL\\_REQUEST\\_TEMPLATE,\nREADME, and CONTRIBUTING files.\n\n`content_reports_enabled` is only returned for organization-owned repositories.", + "description": "This endpoint will return all community profile metrics, including an\noverall health score, repository description, the presence of documentation, detected\ncode of conduct, detected license, and the presence of ISSUE\\_TEMPLATE, PULL\\_REQUEST\\_TEMPLATE,\nREADME, and CONTRIBUTING files.\n\nThe `health_percentage` score is defined as a percentage of how many of\nthese four documents are present: README, CONTRIBUTING, LICENSE, and\nCODE_OF_CONDUCT. For example, if all four documents are present, then\nthe `health_percentage` is `100`. If only one is present, then the\n`health_percentage` is `25`.\n\n`content_reports_enabled` is only returned for organization-owned repositories.", "tags": [ "repos" ], @@ -58100,6 +58100,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -58285,11 +58294,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/cache/ghes-2.18.deref.json b/cache/ghes-2.18.deref.json index 23bcffac8..734c596d8 100644 --- a/cache/ghes-2.18.deref.json +++ b/cache/ghes-2.18.deref.json @@ -75238,6 +75238,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -75958,6 +75967,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -76802,6 +76820,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -77589,11 +77616,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -80041,11 +80082,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -81372,6 +81427,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -92332,6 +92396,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -92994,11 +93067,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -95240,7 +95327,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], diff --git a/cache/ghes-2.18.json b/cache/ghes-2.18.json index 4c2aa789c..29d2632dc 100644 --- a/cache/ghes-2.18.json +++ b/cache/ghes-2.18.json @@ -16272,7 +16272,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], @@ -44526,6 +44526,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -44771,11 +44780,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/cache/ghes-2.19.deref.json b/cache/ghes-2.19.deref.json index f10ca9b08..a7b3cec2c 100644 --- a/cache/ghes-2.19.deref.json +++ b/cache/ghes-2.19.deref.json @@ -78162,6 +78162,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -78887,6 +78896,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -79736,6 +79754,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -80528,11 +80555,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -82985,11 +83026,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -84321,6 +84376,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -95286,6 +95350,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -95953,11 +96026,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -98204,7 +98291,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], diff --git a/cache/ghes-2.19.json b/cache/ghes-2.19.json index 6cfb4085a..d2373cf10 100644 --- a/cache/ghes-2.19.json +++ b/cache/ghes-2.19.json @@ -16648,7 +16648,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], @@ -44999,6 +44999,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -45244,11 +45253,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/cache/ghes-2.20.deref.json b/cache/ghes-2.20.deref.json index ebba3dc48..9ffda209e 100644 --- a/cache/ghes-2.20.deref.json +++ b/cache/ghes-2.20.deref.json @@ -79313,6 +79313,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -80038,6 +80047,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -80887,6 +80905,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -81679,11 +81706,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -84149,11 +84190,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -85489,6 +85544,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -96475,6 +96539,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -97142,11 +97215,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -99400,7 +99487,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], diff --git a/cache/ghes-2.20.json b/cache/ghes-2.20.json index c4dd3ca54..93151ede7 100644 --- a/cache/ghes-2.20.json +++ b/cache/ghes-2.20.json @@ -16934,7 +16934,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], @@ -45003,6 +45003,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -45248,11 +45257,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/cache/ghes-2.21.deref.json b/cache/ghes-2.21.deref.json index 0a7a2729c..160722035 100644 --- a/cache/ghes-2.21.deref.json +++ b/cache/ghes-2.21.deref.json @@ -88332,6 +88332,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -89057,6 +89066,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -89906,6 +89924,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -90698,11 +90725,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -93182,11 +93223,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -94526,6 +94581,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -105602,6 +105666,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -106269,11 +106342,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -108534,7 +108621,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], diff --git a/cache/ghes-2.21.json b/cache/ghes-2.21.json index 83a5cc3fc..9a5620205 100644 --- a/cache/ghes-2.21.json +++ b/cache/ghes-2.21.json @@ -19032,7 +19032,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], @@ -48547,6 +48547,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -48792,11 +48801,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/cache/ghes-2.22.deref.json b/cache/ghes-2.22.deref.json index 084485c2e..07410318d 100644 --- a/cache/ghes-2.22.deref.json +++ b/cache/ghes-2.22.deref.json @@ -108020,6 +108020,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -108745,6 +108754,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -109594,6 +109612,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -110386,11 +110413,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -112873,11 +112914,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -114218,6 +114273,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -126775,6 +126839,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -127442,11 +127515,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -129727,7 +129814,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], diff --git a/cache/ghes-2.22.json b/cache/ghes-2.22.json index bd4388e34..55cb5ba6d 100644 --- a/cache/ghes-2.22.json +++ b/cache/ghes-2.22.json @@ -23492,7 +23492,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], @@ -53855,6 +53855,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -54040,11 +54049,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/cache/github.ae.deref.json b/cache/github.ae.deref.json index 32974ce02..bdbf72606 100644 --- a/cache/github.ae.deref.json +++ b/cache/github.ae.deref.json @@ -82494,6 +82494,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -83215,6 +83224,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -84060,6 +84078,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -84844,11 +84871,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -87323,11 +87364,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -88664,6 +88719,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -99753,6 +99817,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -100416,11 +100489,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -102697,7 +102784,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], diff --git a/cache/github.ae.json b/cache/github.ae.json index bbb875dfa..bbf5b67bc 100644 --- a/cache/github.ae.json +++ b/cache/github.ae.json @@ -17686,7 +17686,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": [ "codes-of-conduct" ], @@ -45947,6 +45947,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -46192,11 +46201,25 @@ "status": { "type": "string", "example": "completed", + "enum": [ + "queued", + "in_progress", + "completed" + ], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/generated/api.github.com.deref.json b/generated/api.github.com.deref.json index 9665fd56a..eaebb4c3f 100644 --- a/generated/api.github.com.deref.json +++ b/generated/api.github.com.deref.json @@ -96029,6 +96029,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -96637,6 +96646,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -97357,6 +97375,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -98006,11 +98033,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -99977,11 +100014,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -101082,6 +101129,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -111575,6 +111631,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -112131,11 +112196,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -114034,7 +114109,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { @@ -114124,7 +114199,7 @@ "/repos/{owner}/{repo}/community/profile": { "get": { "summary": "Get community profile metrics", - "description": "This endpoint will return all community profile metrics, including an\noverall health score, repository description, the presence of documentation, detected\ncode of conduct, detected license, and the presence of ISSUE\\_TEMPLATE, PULL\\_REQUEST\\_TEMPLATE,\nREADME, and CONTRIBUTING files.\n\n`content_reports_enabled` is only returned for organization-owned repositories.", + "description": "This endpoint will return all community profile metrics, including an\noverall health score, repository description, the presence of documentation, detected\ncode of conduct, detected license, and the presence of ISSUE\\_TEMPLATE, PULL\\_REQUEST\\_TEMPLATE,\nREADME, and CONTRIBUTING files.\n\nThe `health_percentage` score is defined as a percentage of how many of\nthese four documents are present: README, CONTRIBUTING, LICENSE, and\nCODE_OF_CONDUCT. For example, if all four documents are present, then\nthe `health_percentage` is `100`. If only one is present, then the\n`health_percentage` is `25`.\n\n`content_reports_enabled` is only returned for organization-owned repositories.", "tags": ["repos"], "operationId": "repos/get-community-profile-metrics", "externalDocs": { diff --git a/generated/api.github.com.json b/generated/api.github.com.json index db85500f2..cfa06a5ba 100644 --- a/generated/api.github.com.json +++ b/generated/api.github.com.json @@ -18675,7 +18675,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { @@ -18720,7 +18720,7 @@ "/repos/{owner}/{repo}/community/profile": { "get": { "summary": "Get community profile metrics", - "description": "This endpoint will return all community profile metrics, including an\noverall health score, repository description, the presence of documentation, detected\ncode of conduct, detected license, and the presence of ISSUE\\_TEMPLATE, PULL\\_REQUEST\\_TEMPLATE,\nREADME, and CONTRIBUTING files.\n\n`content_reports_enabled` is only returned for organization-owned repositories.", + "description": "This endpoint will return all community profile metrics, including an\noverall health score, repository description, the presence of documentation, detected\ncode of conduct, detected license, and the presence of ISSUE\\_TEMPLATE, PULL\\_REQUEST\\_TEMPLATE,\nREADME, and CONTRIBUTING files.\n\nThe `health_percentage` score is defined as a percentage of how many of\nthese four documents are present: README, CONTRIBUTING, LICENSE, and\nCODE_OF_CONDUCT. For example, if all four documents are present, then\nthe `health_percentage` is `100`. If only one is present, then the\n`health_percentage` is `25`.\n\n`content_reports_enabled` is only returned for organization-owned repositories.", "tags": ["repos"], "operationId": "repos/get-community-profile-metrics", "externalDocs": { @@ -43428,6 +43428,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -43562,11 +43571,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/generated/ghes-2.18.deref.json b/generated/ghes-2.18.deref.json index ede19a24a..b53fec971 100644 --- a/generated/ghes-2.18.deref.json +++ b/generated/ghes-2.18.deref.json @@ -60967,6 +60967,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -61576,6 +61585,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -62297,6 +62315,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -62953,11 +62980,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -64909,11 +64946,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -66010,6 +66057,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -75101,6 +75157,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -75658,11 +75723,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -77536,7 +77611,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { diff --git a/generated/ghes-2.18.json b/generated/ghes-2.18.json index 077b1e897..7a1991a79 100644 --- a/generated/ghes-2.18.json +++ b/generated/ghes-2.18.json @@ -12600,7 +12600,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { @@ -33463,6 +33463,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -33634,11 +33643,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/generated/ghes-2.19.deref.json b/generated/ghes-2.19.deref.json index 7c42a383e..742cdc993 100644 --- a/generated/ghes-2.19.deref.json +++ b/generated/ghes-2.19.deref.json @@ -63320,6 +63320,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -63934,6 +63943,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -64660,6 +64678,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -65321,11 +65348,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -67282,11 +67319,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -68388,6 +68435,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -77484,6 +77540,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -78046,11 +78111,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -79929,7 +80004,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { diff --git a/generated/ghes-2.19.json b/generated/ghes-2.19.json index f9fef51a3..7223e9a78 100644 --- a/generated/ghes-2.19.json +++ b/generated/ghes-2.19.json @@ -12887,7 +12887,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { @@ -33747,6 +33747,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -33918,11 +33927,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/generated/ghes-2.20.deref.json b/generated/ghes-2.20.deref.json index 567b75c0a..9199e5f7d 100644 --- a/generated/ghes-2.20.deref.json +++ b/generated/ghes-2.20.deref.json @@ -64758,6 +64758,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -65372,6 +65381,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -66098,6 +66116,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -66759,11 +66786,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -68729,11 +68766,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -69837,6 +69884,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -78948,6 +79004,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -79510,11 +79575,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -81396,7 +81471,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { diff --git a/generated/ghes-2.20.json b/generated/ghes-2.20.json index 08ffbac12..2fd05fa8c 100644 --- a/generated/ghes-2.20.json +++ b/generated/ghes-2.20.json @@ -13104,7 +13104,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { @@ -33824,6 +33824,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -33995,11 +34004,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/generated/ghes-2.21.deref.json b/generated/ghes-2.21.deref.json index bed72843e..37765b53d 100644 --- a/generated/ghes-2.21.deref.json +++ b/generated/ghes-2.21.deref.json @@ -72399,6 +72399,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -73013,6 +73022,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -73739,6 +73757,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -74400,11 +74427,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -76380,11 +76417,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -77490,6 +77537,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -86676,6 +86732,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -87238,11 +87303,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -89127,7 +89202,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { diff --git a/generated/ghes-2.21.json b/generated/ghes-2.21.json index 3b5f8a0ab..36f2e508d 100644 --- a/generated/ghes-2.21.json +++ b/generated/ghes-2.21.json @@ -14711,7 +14711,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { @@ -36429,6 +36429,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -36600,11 +36609,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/generated/ghes-2.22.deref.json b/generated/ghes-2.22.deref.json index 185b57701..63d491c93 100644 --- a/generated/ghes-2.22.deref.json +++ b/generated/ghes-2.22.deref.json @@ -88030,6 +88030,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -88644,6 +88653,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -89370,6 +89388,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -90031,11 +90058,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -92014,11 +92051,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -93125,6 +93172,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -103630,6 +103686,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -104192,11 +104257,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -106101,7 +106176,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { diff --git a/generated/ghes-2.22.json b/generated/ghes-2.22.json index a4af9eaed..0444c98c7 100644 --- a/generated/ghes-2.22.json +++ b/generated/ghes-2.22.json @@ -18071,7 +18071,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { @@ -40378,6 +40378,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -40512,11 +40521,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { diff --git a/generated/github.ae.deref.json b/generated/github.ae.deref.json index 1f9a58ad0..377348444 100644 --- a/generated/github.ae.deref.json +++ b/generated/github.ae.deref.json @@ -67469,6 +67469,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -68077,6 +68086,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -68797,6 +68815,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -69446,11 +69473,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -71417,11 +71454,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -72522,6 +72569,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -81713,6 +81769,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -82269,11 +82334,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": { @@ -84172,7 +84247,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { diff --git a/generated/github.ae.json b/generated/github.ae.json index 8978dfc97..90ec5f6ee 100644 --- a/generated/github.ae.json +++ b/generated/github.ae.json @@ -13553,7 +13553,7 @@ "/repos/{owner}/{repo}/community/code_of_conduct": { "get": { "summary": "Get the code of conduct for a repository", - "description": "This method returns the contents of the repository's code of conduct file, if one is detected.", + "description": "Returns the contents of the repository's code of conduct file, if one is detected.\n\nA code of conduct is detected if there is a file named `CODE_OF_CONDUCT` in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.", "tags": ["codes-of-conduct"], "operationId": "codes-of-conduct/get-for-repo", "externalDocs": { @@ -34303,6 +34303,15 @@ "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "started_at": { @@ -34474,11 +34483,21 @@ "status": { "type": "string", "example": "completed", + "enum": ["queued", "in_progress", "completed"], "nullable": true }, "conclusion": { "type": "string", "example": "neutral", + "enum": [ + "success", + "failure", + "neutral", + "cancelled", + "skipped", + "timed_out", + "action_required" + ], "nullable": true }, "url": {