зеркало из https://github.com/github/docs.git
Action ran graphql script"update-files"
This commit is contained in:
Родитель
dc05d0f968
Коммит
11e03dba02
|
@ -2645,9 +2645,19 @@ input CheckRunFilter {
|
|||
checkType: CheckRunType
|
||||
|
||||
"""
|
||||
Filters the check runs by this status.
|
||||
Filters the check runs by these conclusions.
|
||||
"""
|
||||
conclusions: [CheckConclusionState!]
|
||||
|
||||
"""
|
||||
Filters the check runs by this status. Superceded by statuses.
|
||||
"""
|
||||
status: CheckStatusState
|
||||
|
||||
"""
|
||||
Filters the check runs by this status. Overrides status.
|
||||
"""
|
||||
statuses: [CheckStatusState!]
|
||||
}
|
||||
|
||||
"""
|
||||
|
@ -35918,6 +35928,52 @@ enum SquashMergeCommitTitle {
|
|||
PR_TITLE
|
||||
}
|
||||
|
||||
"""
|
||||
Represents an SSH signature on a Commit or Tag.
|
||||
"""
|
||||
type SshSignature implements GitSignature {
|
||||
"""
|
||||
Email used to sign this object.
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""
|
||||
True if the signature is valid and verified by GitHub.
|
||||
"""
|
||||
isValid: Boolean!
|
||||
|
||||
"""
|
||||
Hex-encoded fingerprint of the key that signed this object.
|
||||
"""
|
||||
keyFingerprint: String
|
||||
|
||||
"""
|
||||
Payload for GPG signing object. Raw ODB object without the signature header.
|
||||
"""
|
||||
payload: String!
|
||||
|
||||
"""
|
||||
ASCII-armored signature header from object.
|
||||
"""
|
||||
signature: String!
|
||||
|
||||
"""
|
||||
GitHub user corresponding to the email signing this commit.
|
||||
"""
|
||||
signer: User
|
||||
|
||||
"""
|
||||
The state of this signature. `VALID` if signature is valid and verified by
|
||||
GitHub, otherwise represents reason why signature is considered invalid.
|
||||
"""
|
||||
state: GitSignatureState!
|
||||
|
||||
"""
|
||||
True if the signature was made with GitHub's signing key.
|
||||
"""
|
||||
wasSignedByGitHub: Boolean!
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which star connections can be ordered.
|
||||
"""
|
||||
|
@ -43135,6 +43191,36 @@ type Workflow implements Node {
|
|||
"""
|
||||
name: String!
|
||||
|
||||
"""
|
||||
The runs of the workflow.
|
||||
"""
|
||||
runs(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for the connection
|
||||
"""
|
||||
orderBy: WorkflowRunOrder = {field: CREATED_AT, direction: DESC}
|
||||
): WorkflowRunConnection!
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was last updated.
|
||||
"""
|
||||
|
@ -43237,6 +43323,71 @@ type WorkflowRun implements Node {
|
|||
workflow: Workflow!
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for WorkflowRun.
|
||||
"""
|
||||
type WorkflowRunConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [WorkflowRunEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [WorkflowRun]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
An edge in a connection.
|
||||
"""
|
||||
type WorkflowRunEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
cursor: String!
|
||||
|
||||
"""
|
||||
The item at the end of the edge.
|
||||
"""
|
||||
node: WorkflowRun
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which lists of workflow runs can be ordered upon return.
|
||||
"""
|
||||
input WorkflowRunOrder {
|
||||
"""
|
||||
The direction in which to order workflow runs by the specified field.
|
||||
"""
|
||||
direction: OrderDirection!
|
||||
|
||||
"""
|
||||
The field by which to order workflows.
|
||||
"""
|
||||
field: WorkflowRunOrderField!
|
||||
}
|
||||
|
||||
"""
|
||||
Properties by which workflow run connections can be ordered.
|
||||
"""
|
||||
enum WorkflowRunOrderField {
|
||||
"""
|
||||
Order workflow runs by most recently created
|
||||
"""
|
||||
CREATED_AT
|
||||
}
|
||||
|
||||
"""
|
||||
A valid x509 certificate string
|
||||
"""
|
||||
|
|
|
@ -3075,9 +3075,19 @@ input CheckRunFilter {
|
|||
checkType: CheckRunType
|
||||
|
||||
"""
|
||||
Filters the check runs by this status.
|
||||
Filters the check runs by these conclusions.
|
||||
"""
|
||||
conclusions: [CheckConclusionState!]
|
||||
|
||||
"""
|
||||
Filters the check runs by this status. Superceded by statuses.
|
||||
"""
|
||||
status: CheckStatusState
|
||||
|
||||
"""
|
||||
Filters the check runs by this status. Overrides status.
|
||||
"""
|
||||
statuses: [CheckStatusState!]
|
||||
}
|
||||
|
||||
"""
|
||||
|
@ -44882,6 +44892,52 @@ enum SquashMergeCommitTitle {
|
|||
PR_TITLE
|
||||
}
|
||||
|
||||
"""
|
||||
Represents an SSH signature on a Commit or Tag.
|
||||
"""
|
||||
type SshSignature implements GitSignature {
|
||||
"""
|
||||
Email used to sign this object.
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""
|
||||
True if the signature is valid and verified by GitHub.
|
||||
"""
|
||||
isValid: Boolean!
|
||||
|
||||
"""
|
||||
Hex-encoded fingerprint of the key that signed this object.
|
||||
"""
|
||||
keyFingerprint: String
|
||||
|
||||
"""
|
||||
Payload for GPG signing object. Raw ODB object without the signature header.
|
||||
"""
|
||||
payload: String!
|
||||
|
||||
"""
|
||||
ASCII-armored signature header from object.
|
||||
"""
|
||||
signature: String!
|
||||
|
||||
"""
|
||||
GitHub user corresponding to the email signing this commit.
|
||||
"""
|
||||
signer: User
|
||||
|
||||
"""
|
||||
The state of this signature. `VALID` if signature is valid and verified by
|
||||
GitHub, otherwise represents reason why signature is considered invalid.
|
||||
"""
|
||||
state: GitSignatureState!
|
||||
|
||||
"""
|
||||
True if the signature was made with GitHub's signing key.
|
||||
"""
|
||||
wasSignedByGitHub: Boolean!
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which star connections can be ordered.
|
||||
"""
|
||||
|
@ -53290,6 +53346,36 @@ type Workflow implements Node {
|
|||
"""
|
||||
name: String!
|
||||
|
||||
"""
|
||||
The runs of the workflow.
|
||||
"""
|
||||
runs(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for the connection
|
||||
"""
|
||||
orderBy: WorkflowRunOrder = {field: CREATED_AT, direction: DESC}
|
||||
): WorkflowRunConnection!
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was last updated.
|
||||
"""
|
||||
|
@ -53392,6 +53478,71 @@ type WorkflowRun implements Node {
|
|||
workflow: Workflow!
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for WorkflowRun.
|
||||
"""
|
||||
type WorkflowRunConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [WorkflowRunEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [WorkflowRun]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
An edge in a connection.
|
||||
"""
|
||||
type WorkflowRunEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
cursor: String!
|
||||
|
||||
"""
|
||||
The item at the end of the edge.
|
||||
"""
|
||||
node: WorkflowRun
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which lists of workflow runs can be ordered upon return.
|
||||
"""
|
||||
input WorkflowRunOrder {
|
||||
"""
|
||||
The direction in which to order workflow runs by the specified field.
|
||||
"""
|
||||
direction: OrderDirection!
|
||||
|
||||
"""
|
||||
The field by which to order workflows.
|
||||
"""
|
||||
field: WorkflowRunOrderField!
|
||||
}
|
||||
|
||||
"""
|
||||
Properties by which workflow run connections can be ordered.
|
||||
"""
|
||||
enum WorkflowRunOrderField {
|
||||
"""
|
||||
Order workflow runs by most recently created
|
||||
"""
|
||||
CREATED_AT
|
||||
}
|
||||
|
||||
"""
|
||||
A valid x509 certificate string
|
||||
"""
|
||||
|
|
|
@ -3075,9 +3075,19 @@ input CheckRunFilter {
|
|||
checkType: CheckRunType
|
||||
|
||||
"""
|
||||
Filters the check runs by this status.
|
||||
Filters the check runs by these conclusions.
|
||||
"""
|
||||
conclusions: [CheckConclusionState!]
|
||||
|
||||
"""
|
||||
Filters the check runs by this status. Superceded by statuses.
|
||||
"""
|
||||
status: CheckStatusState
|
||||
|
||||
"""
|
||||
Filters the check runs by this status. Overrides status.
|
||||
"""
|
||||
statuses: [CheckStatusState!]
|
||||
}
|
||||
|
||||
"""
|
||||
|
@ -44882,6 +44892,52 @@ enum SquashMergeCommitTitle {
|
|||
PR_TITLE
|
||||
}
|
||||
|
||||
"""
|
||||
Represents an SSH signature on a Commit or Tag.
|
||||
"""
|
||||
type SshSignature implements GitSignature {
|
||||
"""
|
||||
Email used to sign this object.
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""
|
||||
True if the signature is valid and verified by GitHub.
|
||||
"""
|
||||
isValid: Boolean!
|
||||
|
||||
"""
|
||||
Hex-encoded fingerprint of the key that signed this object.
|
||||
"""
|
||||
keyFingerprint: String
|
||||
|
||||
"""
|
||||
Payload for GPG signing object. Raw ODB object without the signature header.
|
||||
"""
|
||||
payload: String!
|
||||
|
||||
"""
|
||||
ASCII-armored signature header from object.
|
||||
"""
|
||||
signature: String!
|
||||
|
||||
"""
|
||||
GitHub user corresponding to the email signing this commit.
|
||||
"""
|
||||
signer: User
|
||||
|
||||
"""
|
||||
The state of this signature. `VALID` if signature is valid and verified by
|
||||
GitHub, otherwise represents reason why signature is considered invalid.
|
||||
"""
|
||||
state: GitSignatureState!
|
||||
|
||||
"""
|
||||
True if the signature was made with GitHub's signing key.
|
||||
"""
|
||||
wasSignedByGitHub: Boolean!
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which star connections can be ordered.
|
||||
"""
|
||||
|
@ -53290,6 +53346,36 @@ type Workflow implements Node {
|
|||
"""
|
||||
name: String!
|
||||
|
||||
"""
|
||||
The runs of the workflow.
|
||||
"""
|
||||
runs(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for the connection
|
||||
"""
|
||||
orderBy: WorkflowRunOrder = {field: CREATED_AT, direction: DESC}
|
||||
): WorkflowRunConnection!
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was last updated.
|
||||
"""
|
||||
|
@ -53392,6 +53478,71 @@ type WorkflowRun implements Node {
|
|||
workflow: Workflow!
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for WorkflowRun.
|
||||
"""
|
||||
type WorkflowRunConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [WorkflowRunEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [WorkflowRun]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
An edge in a connection.
|
||||
"""
|
||||
type WorkflowRunEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
cursor: String!
|
||||
|
||||
"""
|
||||
The item at the end of the edge.
|
||||
"""
|
||||
node: WorkflowRun
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which lists of workflow runs can be ordered upon return.
|
||||
"""
|
||||
input WorkflowRunOrder {
|
||||
"""
|
||||
The direction in which to order workflow runs by the specified field.
|
||||
"""
|
||||
direction: OrderDirection!
|
||||
|
||||
"""
|
||||
The field by which to order workflows.
|
||||
"""
|
||||
field: WorkflowRunOrderField!
|
||||
}
|
||||
|
||||
"""
|
||||
Properties by which workflow run connections can be ordered.
|
||||
"""
|
||||
enum WorkflowRunOrderField {
|
||||
"""
|
||||
Order workflow runs by most recently created
|
||||
"""
|
||||
CREATED_AT
|
||||
}
|
||||
|
||||
"""
|
||||
A valid x509 certificate string
|
||||
"""
|
||||
|
|
|
@ -1,4 +1,24 @@
|
|||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"<p>Type <code>SshSignature</code> was added</p>",
|
||||
"<p>Type <code>WorkflowRunConnection</code> was added</p>",
|
||||
"<p>Type <code>WorkflowRunEdge</code> was added</p>",
|
||||
"<p>Type <code>WorkflowRunOrder</code> was added</p>",
|
||||
"<p>Type <code>WorkflowRunOrderField</code> was added</p>",
|
||||
"<p>Input field <code>conclusions</code> was added to input object type <code>CheckRunFilter</code></p>",
|
||||
"<p>Input field <code>statuses</code> was added to input object type <code>CheckRunFilter</code></p>",
|
||||
"<p>Field <code>runs</code> was added to object type <code>Workflow</code></p>"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [],
|
||||
"date": "2022-09-07"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
|
|
@ -61210,6 +61210,86 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "SshSignature",
|
||||
"kind": "objects",
|
||||
"id": "sshsignature",
|
||||
"href": "/graphql/reference/objects#sshsignature",
|
||||
"description": "<p>Represents an SSH signature on a Commit or Tag.</p>",
|
||||
"implements": [
|
||||
{
|
||||
"name": "GitSignature",
|
||||
"id": "gitsignature",
|
||||
"href": "/graphql/reference/interfaces#gitsignature"
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "email",
|
||||
"description": "<p>Email used to sign this object.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "isValid",
|
||||
"description": "<p>True if the signature is valid and verified by GitHub.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "keyFingerprint",
|
||||
"description": "<p>Hex-encoded fingerprint of the key that signed this object.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "payload",
|
||||
"description": "<p>Payload for GPG signing object. Raw ODB object without the signature header.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "signature",
|
||||
"description": "<p>ASCII-armored signature header from object.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "signer",
|
||||
"description": "<p>GitHub user corresponding to the email signing this commit.</p>",
|
||||
"type": "User",
|
||||
"id": "user",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#user"
|
||||
},
|
||||
{
|
||||
"name": "state",
|
||||
"description": "<p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>",
|
||||
"type": "GitSignatureState!",
|
||||
"id": "gitsignaturestate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#gitsignaturestate"
|
||||
},
|
||||
{
|
||||
"name": "wasSignedByGitHub",
|
||||
"description": "<p>True if the signature was made with GitHub's signing key.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "StargazerConnection",
|
||||
"kind": "objects",
|
||||
|
@ -69723,6 +69803,66 @@
|
|||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "runs",
|
||||
"description": "<p>The runs of the workflow.</p>",
|
||||
"type": "WorkflowRunConnection!",
|
||||
"id": "workflowrunconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrunconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for the connection.</p>",
|
||||
"type": {
|
||||
"name": "WorkflowRunOrder",
|
||||
"id": "workflowrunorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#workflowrunorder"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updatedAt",
|
||||
"description": "<p>Identifies the date and time when the object was last updated.</p>",
|
||||
|
@ -69912,6 +70052,72 @@
|
|||
"href": "/graphql/reference/objects#workflow"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunConnection",
|
||||
"kind": "objects",
|
||||
"id": "workflowrunconnection",
|
||||
"href": "/graphql/reference/objects#workflowrunconnection",
|
||||
"description": "<p>The connection type for WorkflowRun.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "edges",
|
||||
"description": "<p>A list of edges.</p>",
|
||||
"type": "[WorkflowRunEdge]",
|
||||
"id": "workflowrunedge",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrunedge"
|
||||
},
|
||||
{
|
||||
"name": "nodes",
|
||||
"description": "<p>A list of nodes.</p>",
|
||||
"type": "[WorkflowRun]",
|
||||
"id": "workflowrun",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrun"
|
||||
},
|
||||
{
|
||||
"name": "pageInfo",
|
||||
"description": "<p>Information to aid in pagination.</p>",
|
||||
"type": "PageInfo!",
|
||||
"id": "pageinfo",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pageinfo"
|
||||
},
|
||||
{
|
||||
"name": "totalCount",
|
||||
"description": "<p>Identifies the total count of items in the connection.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunEdge",
|
||||
"kind": "objects",
|
||||
"id": "workflowrunedge",
|
||||
"href": "/graphql/reference/objects#workflowrunedge",
|
||||
"description": "<p>An edge in a connection.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "cursor",
|
||||
"description": "<p>A cursor for use in pagination.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "node",
|
||||
"description": "<p>The item at the end of the edge.</p>",
|
||||
"type": "WorkflowRun",
|
||||
"id": "workflowrun",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrun"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"interfaces": [
|
||||
|
@ -78002,6 +78208,19 @@
|
|||
"description": "<p>Order verifiable domains by the domain name.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunOrderField",
|
||||
"kind": "enums",
|
||||
"id": "workflowrunorderfield",
|
||||
"href": "/graphql/reference/enums#workflowrunorderfield",
|
||||
"description": "<p>Properties by which workflow run connections can be ordered.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "CREATED_AT",
|
||||
"description": "<p>Order workflow runs by most recently created.</p>"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"unions": [
|
||||
|
@ -81098,13 +81317,29 @@
|
|||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkruntype"
|
||||
},
|
||||
{
|
||||
"name": "conclusions",
|
||||
"description": "<p>Filters the check runs by these conclusions.</p>",
|
||||
"type": "[CheckConclusionState!]",
|
||||
"id": "checkconclusionstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkconclusionstate"
|
||||
},
|
||||
{
|
||||
"name": "status",
|
||||
"description": "<p>Filters the check runs by this status.</p>",
|
||||
"description": "<p>Filters the check runs by this status. Superceded by statuses.</p>",
|
||||
"type": "CheckStatusState",
|
||||
"id": "checkstatusstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkstatusstate"
|
||||
},
|
||||
{
|
||||
"name": "statuses",
|
||||
"description": "<p>Filters the check runs by this status. Overrides status.</p>",
|
||||
"type": "[CheckStatusState!]",
|
||||
"id": "checkstatusstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkstatusstate"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -90592,6 +90827,31 @@
|
|||
"isDeprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunOrder",
|
||||
"kind": "inputObjects",
|
||||
"id": "workflowrunorder",
|
||||
"href": "/graphql/reference/input-objects#workflowrunorder",
|
||||
"description": "<p>Ways in which lists of workflow runs can be ordered upon return.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "direction",
|
||||
"description": "<p>The direction in which to order workflow runs by the specified field.</p>",
|
||||
"type": "OrderDirection!",
|
||||
"id": "orderdirection",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#orderdirection"
|
||||
},
|
||||
{
|
||||
"name": "field",
|
||||
"description": "<p>The field by which to order workflows.</p>",
|
||||
"type": "WorkflowRunOrderField!",
|
||||
"id": "workflowrunorderfield",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#workflowrunorderfield"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"scalars": [
|
||||
|
|
|
@ -49955,6 +49955,86 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "SshSignature",
|
||||
"kind": "objects",
|
||||
"id": "sshsignature",
|
||||
"href": "/graphql/reference/objects#sshsignature",
|
||||
"description": "<p>Represents an SSH signature on a Commit or Tag.</p>",
|
||||
"implements": [
|
||||
{
|
||||
"name": "GitSignature",
|
||||
"id": "gitsignature",
|
||||
"href": "/graphql/reference/interfaces#gitsignature"
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "email",
|
||||
"description": "<p>Email used to sign this object.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "isValid",
|
||||
"description": "<p>True if the signature is valid and verified by GitHub.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "keyFingerprint",
|
||||
"description": "<p>Hex-encoded fingerprint of the key that signed this object.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "payload",
|
||||
"description": "<p>Payload for GPG signing object. Raw ODB object without the signature header.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "signature",
|
||||
"description": "<p>ASCII-armored signature header from object.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "signer",
|
||||
"description": "<p>GitHub user corresponding to the email signing this commit.</p>",
|
||||
"type": "User",
|
||||
"id": "user",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#user"
|
||||
},
|
||||
{
|
||||
"name": "state",
|
||||
"description": "<p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>",
|
||||
"type": "GitSignatureState!",
|
||||
"id": "gitsignaturestate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#gitsignaturestate"
|
||||
},
|
||||
{
|
||||
"name": "wasSignedByGitHub",
|
||||
"description": "<p>True if the signature was made with GitHub's signing key.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "StargazerConnection",
|
||||
"kind": "objects",
|
||||
|
@ -57419,6 +57499,66 @@
|
|||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "runs",
|
||||
"description": "<p>The runs of the workflow.</p>",
|
||||
"type": "WorkflowRunConnection!",
|
||||
"id": "workflowrunconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrunconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for the connection.</p>",
|
||||
"type": {
|
||||
"name": "WorkflowRunOrder",
|
||||
"id": "workflowrunorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#workflowrunorder"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updatedAt",
|
||||
"description": "<p>Identifies the date and time when the object was last updated.</p>",
|
||||
|
@ -57608,6 +57748,72 @@
|
|||
"href": "/graphql/reference/objects#workflow"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunConnection",
|
||||
"kind": "objects",
|
||||
"id": "workflowrunconnection",
|
||||
"href": "/graphql/reference/objects#workflowrunconnection",
|
||||
"description": "<p>The connection type for WorkflowRun.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "edges",
|
||||
"description": "<p>A list of edges.</p>",
|
||||
"type": "[WorkflowRunEdge]",
|
||||
"id": "workflowrunedge",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrunedge"
|
||||
},
|
||||
{
|
||||
"name": "nodes",
|
||||
"description": "<p>A list of nodes.</p>",
|
||||
"type": "[WorkflowRun]",
|
||||
"id": "workflowrun",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrun"
|
||||
},
|
||||
{
|
||||
"name": "pageInfo",
|
||||
"description": "<p>Information to aid in pagination.</p>",
|
||||
"type": "PageInfo!",
|
||||
"id": "pageinfo",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pageinfo"
|
||||
},
|
||||
{
|
||||
"name": "totalCount",
|
||||
"description": "<p>Identifies the total count of items in the connection.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunEdge",
|
||||
"kind": "objects",
|
||||
"id": "workflowrunedge",
|
||||
"href": "/graphql/reference/objects#workflowrunedge",
|
||||
"description": "<p>An edge in a connection.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "cursor",
|
||||
"description": "<p>A cursor for use in pagination.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "node",
|
||||
"description": "<p>The item at the end of the edge.</p>",
|
||||
"type": "WorkflowRun",
|
||||
"id": "workflowrun",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrun"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"interfaces": [
|
||||
|
@ -63712,6 +63918,19 @@
|
|||
"description": "<p>Order user statuses by when they were updated.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunOrderField",
|
||||
"kind": "enums",
|
||||
"id": "workflowrunorderfield",
|
||||
"href": "/graphql/reference/enums#workflowrunorderfield",
|
||||
"description": "<p>Properties by which workflow run connections can be ordered.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "CREATED_AT",
|
||||
"description": "<p>Order workflow runs by most recently created.</p>"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"unions": [
|
||||
|
@ -66196,13 +66415,29 @@
|
|||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkruntype"
|
||||
},
|
||||
{
|
||||
"name": "conclusions",
|
||||
"description": "<p>Filters the check runs by these conclusions.</p>",
|
||||
"type": "[CheckConclusionState!]",
|
||||
"id": "checkconclusionstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkconclusionstate"
|
||||
},
|
||||
{
|
||||
"name": "status",
|
||||
"description": "<p>Filters the check runs by this status.</p>",
|
||||
"description": "<p>Filters the check runs by this status. Superceded by statuses.</p>",
|
||||
"type": "CheckStatusState",
|
||||
"id": "checkstatusstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkstatusstate"
|
||||
},
|
||||
{
|
||||
"name": "statuses",
|
||||
"description": "<p>Filters the check runs by this status. Overrides status.</p>",
|
||||
"type": "[CheckStatusState!]",
|
||||
"id": "checkstatusstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkstatusstate"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -73804,6 +74039,31 @@
|
|||
"href": "/graphql/reference/enums#userstatusorderfield"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunOrder",
|
||||
"kind": "inputObjects",
|
||||
"id": "workflowrunorder",
|
||||
"href": "/graphql/reference/input-objects#workflowrunorder",
|
||||
"description": "<p>Ways in which lists of workflow runs can be ordered upon return.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "direction",
|
||||
"description": "<p>The direction in which to order workflow runs by the specified field.</p>",
|
||||
"type": "OrderDirection!",
|
||||
"id": "orderdirection",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#orderdirection"
|
||||
},
|
||||
{
|
||||
"name": "field",
|
||||
"description": "<p>The field by which to order workflows.</p>",
|
||||
"type": "WorkflowRunOrderField!",
|
||||
"id": "workflowrunorderfield",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#workflowrunorderfield"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"scalars": [
|
||||
|
|
|
@ -61210,6 +61210,86 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "SshSignature",
|
||||
"kind": "objects",
|
||||
"id": "sshsignature",
|
||||
"href": "/graphql/reference/objects#sshsignature",
|
||||
"description": "<p>Represents an SSH signature on a Commit or Tag.</p>",
|
||||
"implements": [
|
||||
{
|
||||
"name": "GitSignature",
|
||||
"id": "gitsignature",
|
||||
"href": "/graphql/reference/interfaces#gitsignature"
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "email",
|
||||
"description": "<p>Email used to sign this object.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "isValid",
|
||||
"description": "<p>True if the signature is valid and verified by GitHub.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "keyFingerprint",
|
||||
"description": "<p>Hex-encoded fingerprint of the key that signed this object.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "payload",
|
||||
"description": "<p>Payload for GPG signing object. Raw ODB object without the signature header.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "signature",
|
||||
"description": "<p>ASCII-armored signature header from object.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "signer",
|
||||
"description": "<p>GitHub user corresponding to the email signing this commit.</p>",
|
||||
"type": "User",
|
||||
"id": "user",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#user"
|
||||
},
|
||||
{
|
||||
"name": "state",
|
||||
"description": "<p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>",
|
||||
"type": "GitSignatureState!",
|
||||
"id": "gitsignaturestate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#gitsignaturestate"
|
||||
},
|
||||
{
|
||||
"name": "wasSignedByGitHub",
|
||||
"description": "<p>True if the signature was made with GitHub's signing key.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "StargazerConnection",
|
||||
"kind": "objects",
|
||||
|
@ -69723,6 +69803,66 @@
|
|||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "runs",
|
||||
"description": "<p>The runs of the workflow.</p>",
|
||||
"type": "WorkflowRunConnection!",
|
||||
"id": "workflowrunconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrunconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for the connection.</p>",
|
||||
"type": {
|
||||
"name": "WorkflowRunOrder",
|
||||
"id": "workflowrunorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#workflowrunorder"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updatedAt",
|
||||
"description": "<p>Identifies the date and time when the object was last updated.</p>",
|
||||
|
@ -69912,6 +70052,72 @@
|
|||
"href": "/graphql/reference/objects#workflow"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunConnection",
|
||||
"kind": "objects",
|
||||
"id": "workflowrunconnection",
|
||||
"href": "/graphql/reference/objects#workflowrunconnection",
|
||||
"description": "<p>The connection type for WorkflowRun.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "edges",
|
||||
"description": "<p>A list of edges.</p>",
|
||||
"type": "[WorkflowRunEdge]",
|
||||
"id": "workflowrunedge",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrunedge"
|
||||
},
|
||||
{
|
||||
"name": "nodes",
|
||||
"description": "<p>A list of nodes.</p>",
|
||||
"type": "[WorkflowRun]",
|
||||
"id": "workflowrun",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrun"
|
||||
},
|
||||
{
|
||||
"name": "pageInfo",
|
||||
"description": "<p>Information to aid in pagination.</p>",
|
||||
"type": "PageInfo!",
|
||||
"id": "pageinfo",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pageinfo"
|
||||
},
|
||||
{
|
||||
"name": "totalCount",
|
||||
"description": "<p>Identifies the total count of items in the connection.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunEdge",
|
||||
"kind": "objects",
|
||||
"id": "workflowrunedge",
|
||||
"href": "/graphql/reference/objects#workflowrunedge",
|
||||
"description": "<p>An edge in a connection.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "cursor",
|
||||
"description": "<p>A cursor for use in pagination.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "node",
|
||||
"description": "<p>The item at the end of the edge.</p>",
|
||||
"type": "WorkflowRun",
|
||||
"id": "workflowrun",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#workflowrun"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"interfaces": [
|
||||
|
@ -78002,6 +78208,19 @@
|
|||
"description": "<p>Order verifiable domains by the domain name.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunOrderField",
|
||||
"kind": "enums",
|
||||
"id": "workflowrunorderfield",
|
||||
"href": "/graphql/reference/enums#workflowrunorderfield",
|
||||
"description": "<p>Properties by which workflow run connections can be ordered.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "CREATED_AT",
|
||||
"description": "<p>Order workflow runs by most recently created.</p>"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"unions": [
|
||||
|
@ -81098,13 +81317,29 @@
|
|||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkruntype"
|
||||
},
|
||||
{
|
||||
"name": "conclusions",
|
||||
"description": "<p>Filters the check runs by these conclusions.</p>",
|
||||
"type": "[CheckConclusionState!]",
|
||||
"id": "checkconclusionstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkconclusionstate"
|
||||
},
|
||||
{
|
||||
"name": "status",
|
||||
"description": "<p>Filters the check runs by this status.</p>",
|
||||
"description": "<p>Filters the check runs by this status. Superceded by statuses.</p>",
|
||||
"type": "CheckStatusState",
|
||||
"id": "checkstatusstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkstatusstate"
|
||||
},
|
||||
{
|
||||
"name": "statuses",
|
||||
"description": "<p>Filters the check runs by this status. Overrides status.</p>",
|
||||
"type": "[CheckStatusState!]",
|
||||
"id": "checkstatusstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#checkstatusstate"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -90592,6 +90827,31 @@
|
|||
"isDeprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WorkflowRunOrder",
|
||||
"kind": "inputObjects",
|
||||
"id": "workflowrunorder",
|
||||
"href": "/graphql/reference/input-objects#workflowrunorder",
|
||||
"description": "<p>Ways in which lists of workflow runs can be ordered upon return.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "direction",
|
||||
"description": "<p>The direction in which to order workflow runs by the specified field.</p>",
|
||||
"type": "OrderDirection!",
|
||||
"id": "orderdirection",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#orderdirection"
|
||||
},
|
||||
{
|
||||
"name": "field",
|
||||
"description": "<p>The field by which to order workflows.</p>",
|
||||
"type": "WorkflowRunOrderField!",
|
||||
"id": "workflowrunorderfield",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#workflowrunorderfield"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"scalars": [
|
||||
|
|
Загрузка…
Ссылка в новой задаче