From 8d98d3a8fdf41e87461e7e56f3991d7d51931eb1 Mon Sep 17 00:00:00 2001 From: Octokit Bot Date: Tue, 16 Apr 2024 09:01:02 +0000 Subject: [PATCH 1/4] WIP: schema.graphql changed - please review --- schema.graphql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/schema.graphql b/schema.graphql index 61911785c..c8c768bd8 100644 --- a/schema.graphql +++ b/schema.graphql @@ -22720,7 +22720,8 @@ type Mutation { ): RemoveEnterpriseAdminPayload """ - Removes the identity provider from an enterprise + Removes the identity provider from an enterprise. Owners of enterprises both + with and without Enterprise Managed Users may use this mutation. """ removeEnterpriseIdentityProvider( """ From 10809ab056f0a668eb6543aaaa6ce4f7c8a0cb1b Mon Sep 17 00:00:00 2001 From: Octokit Bot Date: Tue, 16 Apr 2024 09:01:06 +0000 Subject: [PATCH 2/4] build: schema.json and schema.d.ts updated --- schema.d.ts | 5 ++++- schema.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/schema.d.ts b/schema.d.ts index 58ae94404..86161431f 100644 --- a/schema.d.ts +++ b/schema.d.ts @@ -11077,7 +11077,10 @@ export type Mutation = { removeAssigneesFromAssignable?: Maybe; /** Removes an administrator from the enterprise. */ removeEnterpriseAdmin?: Maybe; - /** Removes the identity provider from an enterprise */ + /** + * Removes the identity provider from an enterprise. Owners of enterprises both + * with and without Enterprise Managed Users may use this mutation. + */ removeEnterpriseIdentityProvider?: Maybe; /** Removes a user from all organizations within the enterprise */ removeEnterpriseMember?: Maybe; diff --git a/schema.json b/schema.json index b21a7325a..1bc9a87fc 100644 --- a/schema.json +++ b/schema.json @@ -58013,7 +58013,7 @@ }, { "name": "removeEnterpriseIdentityProvider", - "description": "Removes the identity provider from an enterprise", + "description": "Removes the identity provider from an enterprise. Owners of enterprises both with and without Enterprise Managed Users may use this mutation.", "args": [ { "name": "input", From 604a4d1b87eff4e14484a1ca9609ec6fa51208ee Mon Sep 17 00:00:00 2001 From: Octokit Bot Date: Tue, 16 Apr 2024 11:00:50 +0000 Subject: [PATCH 3/4] WIP: schema.graphql changed - please review --- schema.graphql | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/schema.graphql b/schema.graphql index c8c768bd8..a16322d0c 100644 --- a/schema.graphql +++ b/schema.graphql @@ -20718,6 +20718,51 @@ enum MergeQueueMergingStrategy { HEADGREEN } +""" +Detailed status information about a pull request merge. +""" +enum MergeStateStatus { + """ + The head ref is out of date. + """ + BEHIND + + """ + The merge is blocked. + """ + BLOCKED + + """ + Mergeable and passing commit status. + """ + CLEAN + + """ + The merge commit cannot be cleanly created. + """ + DIRTY + + """ + The merge is blocked due to the pull request being a draft. + """ + DRAFT @deprecated(reason: "DRAFT state will be removed from this enum and `isDraft` should be used instead Use PullRequest.isDraft instead. Removal on 2021-01-01 UTC.") + + """ + Mergeable with passing commit status and pre-receive hooks. + """ + HAS_HOOKS + + """ + The state cannot currently be determined. + """ + UNKNOWN + + """ + Mergeable with non-passing commit status. + """ + UNSTABLE +} + """ Whether or not a PullRequest can be merged. """ @@ -34416,6 +34461,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab """ bodyText: String! + """ + Whether or not the pull request is rebaseable. + """ + canBeRebased: Boolean! + """ The number of changed files in this pull request. """ @@ -34771,6 +34821,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab """ mergeQueueEntry: MergeQueueEntry + """ + Detailed information about the current pull request merge state status. + """ + mergeStateStatus: MergeStateStatus! + """ Whether or not the pull request can be merged based on the existence of merge conflicts. """ From ad5228798da1f35b6af9a26f96bebf4c0f96de2c Mon Sep 17 00:00:00 2001 From: Octokit Bot Date: Tue, 16 Apr 2024 15:00:48 +0000 Subject: [PATCH 4/4] WIP: schema.graphql changed - please review --- schema.graphql | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/schema.graphql b/schema.graphql index a16322d0c..c48e373de 100644 --- a/schema.graphql +++ b/schema.graphql @@ -1114,6 +1114,21 @@ type AddedToProjectEvent implements Node { The Node ID of the AddedToProjectEvent object """ id: ID! + + """ + Project referenced by event. + """ + project: Project + + """ + Project card referenced by this project event. + """ + projectCard: ProjectCard + + """ + Column name referenced by this project event. + """ + projectColumnName: String! } """ @@ -6522,6 +6537,21 @@ type ConvertedNoteToIssueEvent implements Node { The Node ID of the ConvertedNoteToIssueEvent object """ id: ID! + + """ + Project referenced by event. + """ + project: Project + + """ + Project card referenced by this project event. + """ + projectCard: ProjectCard + + """ + Column name referenced by this project event. + """ + projectColumnName: String! } """ @@ -21449,6 +21479,26 @@ type MovedColumnsInProjectEvent implements Node { The Node ID of the MovedColumnsInProjectEvent object """ id: ID! + + """ + Column name the issue or pull request was moved from. + """ + previousProjectColumnName: String! + + """ + Project referenced by event. + """ + project: Project + + """ + Project card referenced by this project event. + """ + projectCard: ProjectCard + + """ + Column name the issue or pull request was moved to. + """ + projectColumnName: String! } """ @@ -39724,6 +39774,16 @@ type RemovedFromProjectEvent implements Node { The Node ID of the RemovedFromProjectEvent object """ id: ID! + + """ + Project referenced by event. + """ + project: Project + + """ + Column name referenced by this project event. + """ + projectColumnName: String! } """