github-schema 1.21.1 → 1.21.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{github-schema-CMobN1Mg.d.cts → github-schema-CEeRMOi5.d.cts} +44 -1
- package/dist/{github-schema-CpPEovOD.d.mts → github-schema-CR2Avvru.d.mts} +44 -1
- package/dist/github-schema.d.cts +2 -2
- package/dist/github-schema.d.mts +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/github-schema.graphql +58 -0
- package/package.json +1 -1
package/github-schema.graphql
CHANGED
|
@@ -39445,6 +39445,13 @@ type PullRequestParameters {
|
|
|
39445
39445
|
All conversations on code must be resolved before a pull request can be merged.
|
|
39446
39446
|
"""
|
|
39447
39447
|
requiredReviewThreadResolution: Boolean!
|
|
39448
|
+
|
|
39449
|
+
"""
|
|
39450
|
+
This field is in beta and subject to change. A collection of reviewers and
|
|
39451
|
+
associated file patterns. Each reviewer has a list of file patterns which
|
|
39452
|
+
determine the files that reviewer is required to review.
|
|
39453
|
+
"""
|
|
39454
|
+
requiredReviewers: [RequiredReviewerConfiguration!]
|
|
39448
39455
|
}
|
|
39449
39456
|
|
|
39450
39457
|
"""
|
|
@@ -39486,6 +39493,13 @@ input PullRequestParametersInput {
|
|
|
39486
39493
|
All conversations on code must be resolved before a pull request can be merged.
|
|
39487
39494
|
"""
|
|
39488
39495
|
requiredReviewThreadResolution: Boolean!
|
|
39496
|
+
|
|
39497
|
+
"""
|
|
39498
|
+
This argument is in beta and subject to change. A collection of reviewers and
|
|
39499
|
+
associated file patterns. Each reviewer has a list of file patterns which
|
|
39500
|
+
determine the files that reviewer is required to review.
|
|
39501
|
+
"""
|
|
39502
|
+
requiredReviewers: [RequiredReviewerConfigurationInput!]
|
|
39489
39503
|
}
|
|
39490
39504
|
|
|
39491
39505
|
"""
|
|
@@ -50791,6 +50805,50 @@ input RequiredDeploymentsParametersInput {
|
|
|
50791
50805
|
requiredDeploymentEnvironments: [String!]!
|
|
50792
50806
|
}
|
|
50793
50807
|
|
|
50808
|
+
"""
|
|
50809
|
+
A reviewing team, and file patterns describing which files they must approve changes to.
|
|
50810
|
+
"""
|
|
50811
|
+
type RequiredReviewerConfiguration {
|
|
50812
|
+
"""
|
|
50813
|
+
Array of file patterns. Pull requests which change matching files must be
|
|
50814
|
+
approved by the specified team. File patterns use fnmatch syntax.
|
|
50815
|
+
"""
|
|
50816
|
+
filePatterns: [String!]!
|
|
50817
|
+
|
|
50818
|
+
"""
|
|
50819
|
+
Minimum number of approvals required from the specified team. If set to zero,
|
|
50820
|
+
the team will be added to the pull request but approval is optional.
|
|
50821
|
+
"""
|
|
50822
|
+
minimumApprovals: Int!
|
|
50823
|
+
|
|
50824
|
+
"""
|
|
50825
|
+
Node ID of the team which must review changes to matching files.
|
|
50826
|
+
"""
|
|
50827
|
+
reviewerId: ID!
|
|
50828
|
+
}
|
|
50829
|
+
|
|
50830
|
+
"""
|
|
50831
|
+
A reviewing team, and file patterns describing which files they must approve changes to.
|
|
50832
|
+
"""
|
|
50833
|
+
input RequiredReviewerConfigurationInput {
|
|
50834
|
+
"""
|
|
50835
|
+
Array of file patterns. Pull requests which change matching files must be
|
|
50836
|
+
approved by the specified team. File patterns use fnmatch syntax.
|
|
50837
|
+
"""
|
|
50838
|
+
filePatterns: [String!]!
|
|
50839
|
+
|
|
50840
|
+
"""
|
|
50841
|
+
Minimum number of approvals required from the specified team. If set to zero,
|
|
50842
|
+
the team will be added to the pull request but approval is optional.
|
|
50843
|
+
"""
|
|
50844
|
+
minimumApprovals: Int!
|
|
50845
|
+
|
|
50846
|
+
"""
|
|
50847
|
+
Node ID of the team which must review changes to matching files.
|
|
50848
|
+
"""
|
|
50849
|
+
reviewerId: ID!
|
|
50850
|
+
}
|
|
50851
|
+
|
|
50794
50852
|
"""
|
|
50795
50853
|
Represents a required status check for a protected branch, but not any specific run of that check.
|
|
50796
50854
|
"""
|