Skip to content

Commit

Permalink
Update dependency @octokit/graphql-schema to v14.35.0 (#749)
Browse files Browse the repository at this point in the history
* Update dependency @octokit/graphql-schema to v14.35.0

* Generated by GitHub Actions (ts / generate)

https://github.com/int128/hide-comment-action/actions/runs/6473720024

* Empty commit to trigger GitHub Actions

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: update-generated-files-action <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: int128-renovate-merge-bot[bot] <132176788+int128-renovate-merge-bot[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 10, 2023
1 parent 993ad17 commit 5f9b85a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 6 deletions.
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": "3.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@octokit/graphql-schema": "14.34.0",
"@octokit/graphql-schema": "14.35.0",
"@tsconfig/node16": "16.1.1",
"@types/jest": "29.5.5",
"@types/node": "16.18.58",
Expand Down
26 changes: 25 additions & 1 deletion src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21666,6 +21666,8 @@ export type RepositoryRuleInput = {

/** The rule types supported in rulesets */
export enum RepositoryRuleType {
/** Authorization */
Authorization = 'AUTHORIZATION',
/** Branch name pattern */
BranchNamePattern = 'BRANCH_NAME_PATTERN',
/** Committer email pattern */
Expand All @@ -21678,6 +21680,16 @@ export enum RepositoryRuleType {
Creation = 'CREATION',
/** Only allow users with bypass permissions to delete matching refs. */
Deletion = 'DELETION',
/** File path pattern */
FilePathPattern = 'FILE_PATH_PATTERN',
/** Branch is read-only. Users cannot push to the branch. */
LockBranch = 'LOCK_BRANCH',
/** Max ref updates */
MaxRefUpdates = 'MAX_REF_UPDATES',
/** Merges must be performed via a merge queue. */
MergeQueue = 'MERGE_QUEUE',
/** Merge queue locked ref */
MergeQueueLockedRef = 'MERGE_QUEUE_LOCKED_REF',
/** 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. */
Expand All @@ -21686,14 +21698,26 @@ export enum RepositoryRuleType {
RequiredDeployments = 'REQUIRED_DEPLOYMENTS',
/** Prevent merge commits from being pushed to matching refs. */
RequiredLinearHistory = 'REQUIRED_LINEAR_HISTORY',
/** When enabled, all conversations on code must be resolved before a pull request can be merged into a branch that matches this rule. */
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. */
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',
/** Commits pushed to matching refs must have verified signatures. */
RulesetRequiredSignatures = 'RULESET_REQUIRED_SIGNATURES',
/** Secret scanning */
SecretScanning = 'SECRET_SCANNING',
/** Tag */
Tag = 'TAG',
/** Tag name pattern */
TagNamePattern = 'TAG_NAME_PATTERN',
/** Only allow users with bypass permission to update matching refs. */
Update = 'UPDATE'
Update = 'UPDATE',
/** Workflow files cannot be modified. */
WorkflowUpdates = 'WORKFLOW_UPDATES'
}

/** A repository ruleset. */
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2068,10 +2068,10 @@
is-plain-object "^5.0.0"
universal-user-agent "^6.0.0"

"@octokit/graphql-schema@14.34.0":
version "14.34.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.34.0.tgz#203f2dfc5325ebf5b2d797f16c1a21ac385042e2"
integrity sha512-uMqWDCnDbR7cuTlZZ0hDv14W8NftDcZoVxJidAm8QCqo7d7RaLWlDSf6x52P7Tw3tS4QySkbl0NpDySOnZPwJw==
"@octokit/graphql-schema@14.35.0":
version "14.35.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.35.0.tgz#a13bc2295a5122a699474b5100320989db6b04e4"
integrity sha512-d2ZELiZzC2eW+c0TvXeoNAjq9CcnbuSBd9BckArmEeuWjf+61a/KU/OKezB7vKz2ixxcIwsRG+PnQLtQnYH26Q==
dependencies:
graphql "^16.0.0"
graphql-tag "^2.10.3"
Expand Down

0 comments on commit 5f9b85a

Please sign in to comment.