Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency @octokit/graphql-schema to v14.32.1 #733

Merged
merged 3 commits into from
Sep 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@graphql-codegen/import-types-preset": "2.2.6",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@octokit/graphql-schema": "14.32.0",
"@octokit/graphql-schema": "14.32.1",
"@tsconfig/node16": "16.1.1",
"@types/jest": "29.5.5",
"@types/node": "16.18.53",
Expand Down
18 changes: 9 additions & 9 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21674,17 +21674,17 @@ export enum RepositoryRuleType {
Creation = 'CREATION',
/** Only allow users with bypass permissions to delete matching refs. */
Deletion = 'DELETION',
/** Prevent users with push access from force pushing to branches. */
/** Prevent users with push access from force pushing to refs. */
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 branches can be merged into a branch that matches this rule. */
/** Choose which environments must be successfully deployed to before refs can be merged into a branch that matches this rule. */
RequiredDeployments = 'REQUIRED_DEPLOYMENTS',
/** Prevent merge commits from being pushed to matching branches. */
/** Prevent merge commits from being pushed to matching refs. */
RequiredLinearHistory = 'REQUIRED_LINEAR_HISTORY',
/** Commits pushed to matching branches must have verified signatures. */
/** 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 branch that matches this rule after status checks have passed. */
/** 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. */
RequiredStatusChecks = 'REQUIRED_STATUS_CHECKS',
/** Tag name pattern */
TagNamePattern = 'TAG_NAME_PATTERN',
Expand Down Expand Up @@ -22124,14 +22124,14 @@ export type RequirableByPullRequestIsRequiredArgs = {
pullRequestNumber?: InputMaybe<Scalars['Int']['input']>;
};

/** Choose which environments must be successfully deployed to before branches can be merged into a branch that matches this rule. */
/** Choose which environments must be successfully deployed to before refs can be merged into a branch that matches this rule. */
export type RequiredDeploymentsParameters = {
__typename?: 'RequiredDeploymentsParameters';
/** The environments that must be successfully deployed to before branches can be merged. */
requiredDeploymentEnvironments: Array<Scalars['String']['output']>;
};

/** Choose which environments must be successfully deployed to before branches can be merged into a branch that matches this rule. */
/** Choose which environments must be successfully deployed to before refs can be merged into a branch that matches this rule. */
export type RequiredDeploymentsParametersInput = {
/** The environments that must be successfully deployed to before branches can be merged. */
requiredDeploymentEnvironments: Array<Scalars['String']['input']>;
Expand All @@ -22154,7 +22154,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 branch that matches this rule after status checks have passed. */
/** 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. */
export type RequiredStatusChecksParameters = {
__typename?: 'RequiredStatusChecksParameters';
/** Status checks that are required. */
Expand All @@ -22163,7 +22163,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 branch that matches this rule after status checks have passed. */
/** 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. */
export type RequiredStatusChecksParametersInput = {
/** Status checks that are required. */
requiredStatusChecks: Array<StatusCheckConfigurationInput>;
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2048,10 +2048,10 @@
is-plain-object "^5.0.0"
universal-user-agent "^6.0.0"

"@octokit/[email protected].0":
version "14.32.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.32.0.tgz#9e6d68b0bb8e7ba713b5f9515db030f0f83197ed"
integrity sha512-Cs43xO5TpJt5OnAqkmgxK3Yj4YlflatKbz7H6s/oiqSfyb3KMWpW5pcybdcIJKW7OpJZDQc/evMJFwI5OfS5yw==
"@octokit/[email protected].1":
version "14.32.1"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.32.1.tgz#ec1aacb5e7b7b4373c0f482ce59d65fddf489ee6"
integrity sha512-z915htH8OH6OzgdKI0ktldpDiwad5fw1Sy9293thBSYIh8QRnvbGvZ2jqb2bYNmbLbBiHcDFH071RkUMIKa9xw==
dependencies:
graphql "^16.0.0"
graphql-tag "^2.10.3"
Expand Down
Loading