Action ran graphql script"update-files"

This commit is contained in:
rachmari 2021-10-29 16:36:00 +00:00 коммит произвёл GitHub
Родитель 9add1c53a9
Коммит 7135d69cac
8 изменённых файлов: 556 добавлений и 3 удалений

Просмотреть файл

@ -8887,6 +8887,71 @@ type DismissPullRequestReviewPayload {
pullRequestReview: PullRequestReview
}
"""
The possible reasons that a Dependabot alert was dismissed.
"""
enum DismissReason {
"""
A fix has already been started
"""
FIX_STARTED
"""
This alert is inaccurate or incorrect
"""
INACCURATE
"""
Vulnerable code is not actually used
"""
NOT_USED
"""
No bandwidth to fix this
"""
NO_BANDWIDTH
"""
Risk is tolerable to this project
"""
TOLERABLE_RISK
}
"""
Autogenerated input type of DismissRepositoryVulnerabilityAlert
"""
input DismissRepositoryVulnerabilityAlertInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The reason the Dependabot alert is being dismissed.
"""
dismissReason: DismissReason!
"""
The Dependabot alert ID to dismiss.
"""
repositoryVulnerabilityAlertId: ID! @possibleTypes(concreteTypes: ["RepositoryVulnerabilityAlert"])
}
"""
Autogenerated return type of DismissRepositoryVulnerabilityAlert
"""
type DismissRepositoryVulnerabilityAlertPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The Dependabot alert that was dismissed
"""
repositoryVulnerabilityAlert: RepositoryVulnerabilityAlert
}
"""
Specifies a review comment to be left with a Pull Request Review.
"""
@ -16934,6 +16999,16 @@ type Mutation {
input: DismissPullRequestReviewInput!
): DismissPullRequestReviewPayload
"""
Dismisses the Dependabot alert.
"""
dismissRepositoryVulnerabilityAlert(
"""
Parameters for DismissRepositoryVulnerabilityAlert
"""
input: DismissRepositoryVulnerabilityAlertInput!
): DismissRepositoryVulnerabilityAlertPayload
"""
Enable the default auto-merge on a pull request.
"""

Просмотреть файл

@ -9510,6 +9510,71 @@ type DismissPullRequestReviewPayload {
pullRequestReview: PullRequestReview
}
"""
The possible reasons that a Dependabot alert was dismissed.
"""
enum DismissReason {
"""
A fix has already been started
"""
FIX_STARTED
"""
This alert is inaccurate or incorrect
"""
INACCURATE
"""
Vulnerable code is not actually used
"""
NOT_USED
"""
No bandwidth to fix this
"""
NO_BANDWIDTH
"""
Risk is tolerable to this project
"""
TOLERABLE_RISK
}
"""
Autogenerated input type of DismissRepositoryVulnerabilityAlert
"""
input DismissRepositoryVulnerabilityAlertInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The reason the Dependabot alert is being dismissed.
"""
dismissReason: DismissReason!
"""
The Dependabot alert ID to dismiss.
"""
repositoryVulnerabilityAlertId: ID! @possibleTypes(concreteTypes: ["RepositoryVulnerabilityAlert"])
}
"""
Autogenerated return type of DismissRepositoryVulnerabilityAlert
"""
type DismissRepositoryVulnerabilityAlertPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The Dependabot alert that was dismissed
"""
repositoryVulnerabilityAlert: RepositoryVulnerabilityAlert
}
"""
Specifies a review comment to be left with a Pull Request Review.
"""
@ -18386,6 +18451,16 @@ type Mutation {
input: DismissPullRequestReviewInput!
): DismissPullRequestReviewPayload
"""
Dismisses the Dependabot alert.
"""
dismissRepositoryVulnerabilityAlert(
"""
Parameters for DismissRepositoryVulnerabilityAlert
"""
input: DismissRepositoryVulnerabilityAlertInput!
): DismissRepositoryVulnerabilityAlertPayload
"""
Enable the default auto-merge on a pull request.
"""

Просмотреть файл

@ -9510,6 +9510,71 @@ type DismissPullRequestReviewPayload {
pullRequestReview: PullRequestReview
}
"""
The possible reasons that a Dependabot alert was dismissed.
"""
enum DismissReason {
"""
A fix has already been started
"""
FIX_STARTED
"""
This alert is inaccurate or incorrect
"""
INACCURATE
"""
Vulnerable code is not actually used
"""
NOT_USED
"""
No bandwidth to fix this
"""
NO_BANDWIDTH
"""
Risk is tolerable to this project
"""
TOLERABLE_RISK
}
"""
Autogenerated input type of DismissRepositoryVulnerabilityAlert
"""
input DismissRepositoryVulnerabilityAlertInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The reason the Dependabot alert is being dismissed.
"""
dismissReason: DismissReason!
"""
The Dependabot alert ID to dismiss.
"""
repositoryVulnerabilityAlertId: ID! @possibleTypes(concreteTypes: ["RepositoryVulnerabilityAlert"])
}
"""
Autogenerated return type of DismissRepositoryVulnerabilityAlert
"""
type DismissRepositoryVulnerabilityAlertPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The Dependabot alert that was dismissed
"""
repositoryVulnerabilityAlert: RepositoryVulnerabilityAlert
}
"""
Specifies a review comment to be left with a Pull Request Review.
"""
@ -18386,6 +18451,16 @@ type Mutation {
input: DismissPullRequestReviewInput!
): DismissPullRequestReviewPayload
"""
Dismisses the Dependabot alert.
"""
dismissRepositoryVulnerabilityAlert(
"""
Parameters for DismissRepositoryVulnerabilityAlert
"""
input: DismissRepositoryVulnerabilityAlertInput!
): DismissRepositoryVulnerabilityAlertPayload
"""
Enable the default auto-merge on a pull request.
"""

Просмотреть файл

@ -1,4 +1,20 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `DismissReason` was added",
"Type `DismissRepositoryVulnerabilityAlertInput` was added",
"Type `DismissRepositoryVulnerabilityAlertPayload` was added",
"Field `dismissRepositoryVulnerabilityAlert` was added to object type `Mutation`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-10-29"
},
{
"schemaChanges": [
{

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -3467,6 +3467,40 @@
}
]
},
{
"name": "dismissRepositoryVulnerabilityAlert",
"kind": "mutations",
"id": "dismissrepositoryvulnerabilityalert",
"href": "/graphql/reference/mutations#dismissrepositoryvulnerabilityalert",
"description": "<p>Dismisses the Dependabot alert.</p>",
"inputFields": [
{
"name": "input",
"type": "DismissRepositoryVulnerabilityAlertInput!",
"id": "dismissrepositoryvulnerabilityalertinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "repositoryVulnerabilityAlert",
"type": "RepositoryVulnerabilityAlert",
"id": "repositoryvulnerabilityalert",
"kind": "objects",
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
"description": "<p>The Dependabot alert that was dismissed.</p>"
}
]
},
{
"name": "enablePullRequestAutoMerge",
"kind": "mutations",
@ -66398,6 +66432,35 @@
}
]
},
{
"name": "DismissReason",
"kind": "enums",
"id": "dismissreason",
"href": "/graphql/reference/enums#dismissreason",
"description": "<p>The possible reasons that a Dependabot alert was dismissed.</p>",
"values": [
{
"name": "FIX_STARTED",
"description": "<p>A fix has already been started.</p>"
},
{
"name": "INACCURATE",
"description": "<p>This alert is inaccurate or incorrect.</p>"
},
{
"name": "NOT_USED",
"description": "<p>Vulnerable code is not actually used.</p>"
},
{
"name": "NO_BANDWIDTH",
"description": "<p>No bandwidth to fix this.</p>"
},
{
"name": "TOLERABLE_RISK",
"description": "<p>Risk is tolerable to this project.</p>"
}
]
},
{
"name": "EnterpriseAdministratorInvitationOrderField",
"kind": "enums",
@ -75071,6 +75134,40 @@
}
]
},
{
"name": "DismissRepositoryVulnerabilityAlertInput",
"kind": "inputObjects",
"id": "dismissrepositoryvulnerabilityalertinput",
"href": "/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput",
"description": "<p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>",
"inputFields": [
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "dismissReason",
"description": "<p>The reason the Dependabot alert is being dismissed.</p>",
"type": "DismissReason!",
"id": "dismissreason",
"kind": "enums",
"href": "/graphql/reference/enums#dismissreason"
},
{
"name": "repositoryVulnerabilityAlertId",
"description": "<p>The Dependabot alert ID to dismiss.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
}
]
},
{
"name": "DraftPullRequestReviewComment",
"kind": "inputObjects",

Просмотреть файл

@ -2792,6 +2792,40 @@
}
]
},
{
"name": "dismissRepositoryVulnerabilityAlert",
"kind": "mutations",
"id": "dismissrepositoryvulnerabilityalert",
"href": "/graphql/reference/mutations#dismissrepositoryvulnerabilityalert",
"description": "<p>Dismisses the Dependabot alert.</p>",
"inputFields": [
{
"name": "input",
"type": "DismissRepositoryVulnerabilityAlertInput!",
"id": "dismissrepositoryvulnerabilityalertinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "repositoryVulnerabilityAlert",
"type": "RepositoryVulnerabilityAlert",
"id": "repositoryvulnerabilityalert",
"kind": "objects",
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
"description": "<p>The Dependabot alert that was dismissed.</p>"
}
]
},
{
"name": "enablePullRequestAutoMerge",
"kind": "mutations",
@ -58764,6 +58798,35 @@
}
]
},
{
"name": "DismissReason",
"kind": "enums",
"id": "dismissreason",
"href": "/graphql/reference/enums#dismissreason",
"description": "<p>The possible reasons that a Dependabot alert was dismissed.</p>",
"values": [
{
"name": "FIX_STARTED",
"description": "<p>A fix has already been started.</p>"
},
{
"name": "INACCURATE",
"description": "<p>This alert is inaccurate or incorrect.</p>"
},
{
"name": "NOT_USED",
"description": "<p>Vulnerable code is not actually used.</p>"
},
{
"name": "NO_BANDWIDTH",
"description": "<p>No bandwidth to fix this.</p>"
},
{
"name": "TOLERABLE_RISK",
"description": "<p>Risk is tolerable to this project.</p>"
}
]
},
{
"name": "EnterpriseAdministratorInvitationOrderField",
"kind": "enums",
@ -66377,6 +66440,40 @@
}
]
},
{
"name": "DismissRepositoryVulnerabilityAlertInput",
"kind": "inputObjects",
"id": "dismissrepositoryvulnerabilityalertinput",
"href": "/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput",
"description": "<p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>",
"inputFields": [
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "dismissReason",
"description": "<p>The reason the Dependabot alert is being dismissed.</p>",
"type": "DismissReason!",
"id": "dismissreason",
"kind": "enums",
"href": "/graphql/reference/enums#dismissreason"
},
{
"name": "repositoryVulnerabilityAlertId",
"description": "<p>The Dependabot alert ID to dismiss.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
}
]
},
{
"name": "DraftPullRequestReviewComment",
"kind": "inputObjects",

Просмотреть файл

@ -3467,6 +3467,40 @@
}
]
},
{
"name": "dismissRepositoryVulnerabilityAlert",
"kind": "mutations",
"id": "dismissrepositoryvulnerabilityalert",
"href": "/graphql/reference/mutations#dismissrepositoryvulnerabilityalert",
"description": "<p>Dismisses the Dependabot alert.</p>",
"inputFields": [
{
"name": "input",
"type": "DismissRepositoryVulnerabilityAlertInput!",
"id": "dismissrepositoryvulnerabilityalertinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "repositoryVulnerabilityAlert",
"type": "RepositoryVulnerabilityAlert",
"id": "repositoryvulnerabilityalert",
"kind": "objects",
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
"description": "<p>The Dependabot alert that was dismissed.</p>"
}
]
},
{
"name": "enablePullRequestAutoMerge",
"kind": "mutations",
@ -66398,6 +66432,35 @@
}
]
},
{
"name": "DismissReason",
"kind": "enums",
"id": "dismissreason",
"href": "/graphql/reference/enums#dismissreason",
"description": "<p>The possible reasons that a Dependabot alert was dismissed.</p>",
"values": [
{
"name": "FIX_STARTED",
"description": "<p>A fix has already been started.</p>"
},
{
"name": "INACCURATE",
"description": "<p>This alert is inaccurate or incorrect.</p>"
},
{
"name": "NOT_USED",
"description": "<p>Vulnerable code is not actually used.</p>"
},
{
"name": "NO_BANDWIDTH",
"description": "<p>No bandwidth to fix this.</p>"
},
{
"name": "TOLERABLE_RISK",
"description": "<p>Risk is tolerable to this project.</p>"
}
]
},
{
"name": "EnterpriseAdministratorInvitationOrderField",
"kind": "enums",
@ -75071,6 +75134,40 @@
}
]
},
{
"name": "DismissRepositoryVulnerabilityAlertInput",
"kind": "inputObjects",
"id": "dismissrepositoryvulnerabilityalertinput",
"href": "/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput",
"description": "<p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>",
"inputFields": [
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "dismissReason",
"description": "<p>The reason the Dependabot alert is being dismissed.</p>",
"type": "DismissReason!",
"id": "dismissreason",
"kind": "enums",
"href": "/graphql/reference/enums#dismissreason"
},
{
"name": "repositoryVulnerabilityAlertId",
"description": "<p>The Dependabot alert ID to dismiss.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
}
]
},
{
"name": "DraftPullRequestReviewComment",
"kind": "inputObjects",