From 03628014dd236ef92018b95f06199ee1a8747027 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 17:19:03 +0000 Subject: [PATCH 1/3] Update dependency @octokit/graphql-schema to v14.40.0 --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index d68575e7..f853940b 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "@graphql-codegen/import-types-preset": "3.0.0", "@graphql-codegen/typescript": "4.0.1", "@graphql-codegen/typescript-operations": "4.0.1", - "@octokit/graphql-schema": "14.39.2", + "@octokit/graphql-schema": "14.40.0", "@tsconfig/node16": "16.1.1", "@types/jest": "29.5.7", "@types/node": "20.8.10", diff --git a/yarn.lock b/yarn.lock index 750777db..2218876c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2079,10 +2079,10 @@ is-plain-object "^5.0.0" universal-user-agent "^6.0.0" -"@octokit/graphql-schema@14.39.2": - version "14.39.2" - resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.39.2.tgz#fd93eeaf54a5974744d7bb472f797773032cd3cd" - integrity sha512-BwUKefIANJKKE6WqTLNvymb70i6z5ERoixBympTUubG+SXD2aSJTzPP5DB1jb4GQhA1LZ0XiKmRGxRVGZg7oWA== +"@octokit/graphql-schema@14.40.0": + version "14.40.0" + resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.40.0.tgz#4e6d7f6eca311b21316a65c304bf2e838bcb64a7" + integrity sha512-xqBcB1D2nZAqAejm6yYSaOxD9c5o+45cwiJ2kgzZ8MXyJAONRZyGJ+GQhXEUxLuqRGDE4wg7nqxeS/r4dqqeOA== dependencies: graphql "^16.0.0" graphql-tag "^2.10.3" From ab8525922f841b38065f047fb4e3a00842c61b9b Mon Sep 17 00:00:00 2001 From: update-generated-files-action <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 17:19:50 +0000 Subject: [PATCH 2/3] Generated by GitHub Actions (ts / generate) https://github.com/int128/hide-comment-action/actions/runs/6748338715 --- src/generated/graphql-types.ts | 45 ++++++++++++++++++++++++++++------ 1 file changed, 38 insertions(+), 7 deletions(-) diff --git a/src/generated/graphql-types.ts b/src/generated/graphql-types.ts index 37f792af..da46ec24 100644 --- a/src/generated/graphql-types.ts +++ b/src/generated/graphql-types.ts @@ -42,6 +42,23 @@ export type AbortQueuedMigrationsPayload = { success?: Maybe; }; +/** Autogenerated input type of AbortRepositoryMigration */ +export type AbortRepositoryMigrationInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId?: InputMaybe; + /** The ID of the migration to be aborted. */ + migrationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of AbortRepositoryMigration */ +export type AbortRepositoryMigrationPayload = { + __typename?: 'AbortRepositoryMigrationPayload'; + /** A unique identifier for the client performing the mutation. */ + clientMutationId?: Maybe; + /** Did the operation succeed? */ + success?: Maybe; +}; + /** Autogenerated input type of AcceptEnterpriseAdministratorInvitation */ export type AcceptEnterpriseAdministratorInvitationInput = { /** A unique identifier for the client performing the mutation. */ @@ -10277,6 +10294,8 @@ export type Mutation = { __typename?: 'Mutation'; /** Clear all of a customer's queued migrations */ abortQueuedMigrations?: Maybe; + /** Abort a repository migration queued or in progress. */ + abortRepositoryMigration?: Maybe; /** Accepts a pending invitation for a user to become an administrator of an enterprise. */ acceptEnterpriseAdministratorInvitation?: Maybe; /** Applies a suggested topic to the repository. */ @@ -10760,6 +10779,12 @@ export type MutationAbortQueuedMigrationsArgs = { }; +/** The root query for implementing GraphQL mutations. */ +export type MutationAbortRepositoryMigrationArgs = { + input: AbortRepositoryMigrationInput; +}; + + /** The root query for implementing GraphQL mutations. */ export type MutationAcceptEnterpriseAdministratorInvitationArgs = { input: AcceptEnterpriseAdministratorInvitationInput; @@ -17420,7 +17445,7 @@ export type PullRequestParametersInput = { }; /** A review object for a given pull request. */ -export type PullRequestReview = Comment & Deletable & Node & Reactable & RepositoryNode & Updatable & UpdatableComment & { +export type PullRequestReview = Comment & Deletable & Minimizable & Node & Reactable & RepositoryNode & Updatable & UpdatableComment & { __typename?: 'PullRequestReview'; /** The actor who authored the comment. */ author?: Maybe; @@ -17449,8 +17474,12 @@ export type PullRequestReview = Comment & Deletable & Node & Reactable & Reposit id: Scalars['ID']['output']; /** Check if this comment was edited and includes an edit with the creation data */ includesCreatedEdit: Scalars['Boolean']['output']; + /** Returns whether or not a comment has been minimized. */ + isMinimized: Scalars['Boolean']['output']; /** The moment the editor made the last edit */ lastEditedAt?: Maybe; + /** Returns why the comment was minimized. One of `abuse`, `off-topic`, `outdated`, `resolved`, `duplicate` and `spam`. Note that the case and formatting of these values differs from the inputs to the `MinimizeComment` mutation. */ + minimizedReason?: Maybe; /** A list of teams that this review was made on behalf of. */ onBehalfOf: TeamConnection; /** Identifies when the comment was published at. */ @@ -17477,6 +17506,8 @@ export type PullRequestReview = Comment & Deletable & Node & Reactable & Reposit userContentEdits?: Maybe; /** Check if the current viewer can delete this object. */ viewerCanDelete: Scalars['Boolean']['output']; + /** Check if the current viewer can minimize this object. */ + viewerCanMinimize: Scalars['Boolean']['output']; /** Can user react to this subject */ viewerCanReact: Scalars['Boolean']['output']; /** Check if the current viewer can update this object. */ @@ -21696,7 +21727,7 @@ export enum RepositoryRuleType { NonFastForward = 'NON_FAST_FORWARD', /** Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. */ PullRequest = 'PULL_REQUEST', - /** Choose which environments must be successfully deployed to before refs can be merged into a branch that matches this rule. */ + /** Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule. */ RequiredDeployments = 'REQUIRED_DEPLOYMENTS', /** Prevent merge commits from being pushed to matching refs. */ RequiredLinearHistory = 'REQUIRED_LINEAR_HISTORY', @@ -21704,7 +21735,7 @@ export enum RepositoryRuleType { RequiredReviewThreadResolution = 'REQUIRED_REVIEW_THREAD_RESOLUTION', /** Commits pushed to matching refs must have verified signatures. */ RequiredSignatures = 'REQUIRED_SIGNATURES', - /** Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a ref that matches this rule after status checks have passed. */ + /** Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass. */ RequiredStatusChecks = 'REQUIRED_STATUS_CHECKS', /** Require all commits be made to a non-target branch and submitted via a pull request and required workflow checks to pass before they can be merged. */ RequiredWorkflowStatusChecks = 'REQUIRED_WORKFLOW_STATUS_CHECKS', @@ -22156,14 +22187,14 @@ export type RequirableByPullRequestIsRequiredArgs = { pullRequestNumber?: InputMaybe; }; -/** Choose which environments must be successfully deployed to before refs can be merged into a branch that matches this rule. */ +/** Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule. */ export type RequiredDeploymentsParameters = { __typename?: 'RequiredDeploymentsParameters'; /** The environments that must be successfully deployed to before branches can be merged. */ requiredDeploymentEnvironments: Array; }; -/** Choose which environments must be successfully deployed to before refs can be merged into a branch that matches this rule. */ +/** Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule. */ export type RequiredDeploymentsParametersInput = { /** The environments that must be successfully deployed to before branches can be merged. */ requiredDeploymentEnvironments: Array; @@ -22186,7 +22217,7 @@ export type RequiredStatusCheckInput = { context: Scalars['String']['input']; }; -/** Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a ref that matches this rule after status checks have passed. */ +/** Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass. */ export type RequiredStatusChecksParameters = { __typename?: 'RequiredStatusChecksParameters'; /** Status checks that are required. */ @@ -22195,7 +22226,7 @@ export type RequiredStatusChecksParameters = { strictRequiredStatusChecksPolicy: Scalars['Boolean']['output']; }; -/** Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a ref that matches this rule after status checks have passed. */ +/** Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass. */ export type RequiredStatusChecksParametersInput = { /** Status checks that are required. */ requiredStatusChecks: Array; From 5bde08312be75d0b68fc7678eb2b1602145fb435 Mon Sep 17 00:00:00 2001 From: "int128-renovate-merge-bot[bot]" <132176788+int128-renovate-merge-bot[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 20:06:40 +0000 Subject: [PATCH 3/3] Empty commit to trigger GitHub Actions