Skip to content

Commit

Permalink
Action ran graphql script"update-files"
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmari authored Mar 18, 2021
1 parent 4c44642 commit 3fb2a3e
Show file tree
Hide file tree
Showing 6 changed files with 136 additions and 2 deletions.
20 changes: 20 additions & 0 deletions data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2132,6 +2132,16 @@ type CheckRun implements Node & UniformResourceLocatable {
externalId: String
id: ID!

"""
Whether this check run is required to pass before merging.
"""
isRequired(
"""
The pull request this check is required for
"""
pullRequestId: ID!
): Boolean!

"""
The name of the check for this check run.
"""
Expand Down Expand Up @@ -31869,6 +31879,16 @@ type StatusContext implements Node {
description: String
id: ID!

"""
Whether this status is required to pass before merging.
"""
isRequired(
"""
The pull request this status is required for
"""
pullRequestId: ID!
): Boolean!

"""
The state of this status context.
"""
Expand Down
20 changes: 20 additions & 0 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2222,6 +2222,16 @@ type CheckRun implements Node & UniformResourceLocatable {
externalId: String
id: ID!

"""
Whether this check run is required to pass before merging.
"""
isRequired(
"""
The pull request this check is required for
"""
pullRequestId: ID!
): Boolean!

"""
The name of the check for this check run.
"""
Expand Down Expand Up @@ -34802,6 +34812,16 @@ type StatusContext implements Node {
description: String
id: ID!

"""
Whether this status is required to pass before merging.
"""
isRequired(
"""
The pull request this status is required for
"""
pullRequestId: ID!
): Boolean!

"""
The state of this status context.
"""
Expand Down
14 changes: 14 additions & 0 deletions lib/graphql/static/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Field `isRequired` was added to object type `CheckRun`",
"Field `isRequired` was added to object type `StatusContext`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-03-18"
},
{
"schemaChanges": [
{
Expand Down
4 changes: 2 additions & 2 deletions lib/graphql/static/prerendered-objects.json

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions lib/graphql/static/schema-dotcom.json
Original file line number Diff line number Diff line change
Expand Up @@ -8340,6 +8340,26 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "isRequired",
"description": "<p>Whether this check run is required to pass before merging.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean",
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The pull request this check is required for.</p>",
"type": {
"name": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
}
]
},
{
"name": "name",
"description": "<p>The name of the check for this check run.</p>",
Expand Down Expand Up @@ -48997,6 +49017,26 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "isRequired",
"description": "<p>Whether this status is required to pass before merging.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean",
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The pull request this status is required for.</p>",
"type": {
"name": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
}
]
},
{
"name": "state",
"description": "<p>The state of this status context.</p>",
Expand Down
40 changes: 40 additions & 0 deletions lib/graphql/static/schema-ghae.json
Original file line number Diff line number Diff line change
Expand Up @@ -7527,6 +7527,26 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "isRequired",
"description": "<p>Whether this check run is required to pass before merging.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean",
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The pull request this check is required for.</p>",
"type": {
"name": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
}
]
},
{
"name": "name",
"description": "<p>The name of the check for this check run.</p>",
Expand Down Expand Up @@ -45359,6 +45379,26 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "isRequired",
"description": "<p>Whether this status is required to pass before merging.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean",
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The pull request this status is required for.</p>",
"type": {
"name": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
}
]
},
{
"name": "state",
"description": "<p>The state of this status context.</p>",
Expand Down

0 comments on commit 3fb2a3e

Please sign in to comment.