Skip to content

Commit

Permalink
Action ran graphql script"update-files" (github#26710)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Apr 14, 2022
1 parent 0ff60b3 commit 4154b0c
Show file tree
Hide file tree
Showing 13 changed files with 224 additions and 66 deletions.
8 changes: 0 additions & 8 deletions data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,6 @@ upcoming_changes:
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
- location: PullRequest.viewerCanOverrideMergeQueue
description:
'`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin
instead.'
reason: '`viewer_can_override_merge_queue` will be removed'
date: '2022-04-01'
criticality: breaking
owner: cbeaman
- location: Repository.defaultMergeQueue
description: '`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead.'
reason: '`defaultMergeQueue` will be removed.'
Expand Down
10 changes: 10 additions & 0 deletions data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -35659,6 +35659,11 @@ input StartRepositoryMigrationInput {
"""
repositoryName: String!

"""
Whether to skip migrating releases for the repository.
"""
skipReleases: Boolean

"""
The ID of the Octoshift migration source.
"""
Expand Down Expand Up @@ -38445,6 +38450,11 @@ type TreeEntry {
"""
isGenerated: Boolean!

"""
Number of lines in the file.
"""
lineCount: Int

"""
Entry file mode.
"""
Expand Down
14 changes: 6 additions & 8 deletions data/graphql/ghec/graphql_upcoming_changes.public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,6 @@ upcoming_changes:
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
- location: PullRequest.viewerCanOverrideMergeQueue
description:
'`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin
instead.'
reason: '`viewer_can_override_merge_queue` will be removed'
date: '2022-04-01'
criticality: breaking
owner: cbeaman
- location: Repository.defaultMergeQueue
description: '`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead.'
reason: '`defaultMergeQueue` will be removed.'
Expand Down Expand Up @@ -140,3 +132,9 @@ upcoming_changes:
date: '2022-07-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: UpdateProjectNextItemFieldInput.fieldWithSettingId
description: '`fieldWithSettingId` will be removed. Use `fieldConstraintId` instead'
reason: Renamed to fieldConstraintId to improve naming consistency.
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: memex
27 changes: 22 additions & 5 deletions data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -14653,7 +14653,7 @@ union IpAllowListOwner = App | Enterprise | Organization
"""
An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
"""
type Issue implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment {
type Issue implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & ProjectV2Owner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment {
"""
Reason that the conversation was locked.
"""
Expand Down Expand Up @@ -23604,7 +23604,7 @@ type OrgUpdateMemberRepositoryInvitationPermissionAuditEntry implements AuditEnt
"""
An account on GitHub, with one or more owners, that has repositories, members and teams.
"""
type Organization implements Actor & MemberStatusable & Node & PackageOwner & ProfileOwner & ProjectNextOwner & ProjectOwner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
type Organization implements Actor & MemberStatusable & Node & PackageOwner & ProfileOwner & ProjectNextOwner & ProjectOwner & ProjectV2Owner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
"""
Determine if this repository owner has any items that can be pinned to their profile.
"""
Expand Down Expand Up @@ -27383,7 +27383,7 @@ type ProjectNext implements Closable & Node & Updatable {
shortDescription: String

"""
The project's name.
The project's name. Falls back to "Untitled table" if blank.
"""
title: String

Expand Down Expand Up @@ -28126,6 +28126,13 @@ enum ProjectTemplate {
BUG_TRIAGE
}

"""
Represents an owner of a project (beta).
"""
interface ProjectV2Owner {
id: ID!
}

"""
A view within a Project.
"""
Expand Down Expand Up @@ -28329,7 +28336,7 @@ type PublicKeyEdge {
"""
A repository pull request.
"""
type PullRequest implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment {
type PullRequest implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & ProjectV2Owner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment {
"""
Reason that the conversation was locked.
"""
Expand Down Expand Up @@ -41542,6 +41549,11 @@ input StartRepositoryMigrationInput {
"""
repositoryName: String!

"""
Whether to skip migrating releases for the repository.
"""
skipReleases: Boolean

"""
The ID of the Octoshift migration source.
"""
Expand Down Expand Up @@ -44373,6 +44385,11 @@ type TreeEntry {
"""
isGenerated: Boolean!

"""
Number of lines in the file.
"""
lineCount: Int

"""
Entry file mode.
"""
Expand Down Expand Up @@ -47235,7 +47252,7 @@ type UpdateTopicsPayload {
"""
A user is an individual's account on GitHub that owns repositories and can make new content.
"""
type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwner & ProjectOwner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwner & ProjectOwner & ProjectV2Owner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
"""
Determine if this repository owner has any items that can be pinned to their profile.
"""
Expand Down
14 changes: 6 additions & 8 deletions data/graphql/graphql_upcoming_changes.public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,6 @@ upcoming_changes:
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
- location: PullRequest.viewerCanOverrideMergeQueue
description:
'`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin
instead.'
reason: '`viewer_can_override_merge_queue` will be removed'
date: '2022-04-01'
criticality: breaking
owner: cbeaman
- location: Repository.defaultMergeQueue
description: '`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead.'
reason: '`defaultMergeQueue` will be removed.'
Expand Down Expand Up @@ -140,3 +132,9 @@ upcoming_changes:
date: '2022-07-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: UpdateProjectNextItemFieldInput.fieldWithSettingId
description: '`fieldWithSettingId` will be removed. Use `fieldConstraintId` instead'
reason: Renamed to fieldConstraintId to improve naming consistency.
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: memex
27 changes: 22 additions & 5 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -14653,7 +14653,7 @@ union IpAllowListOwner = App | Enterprise | Organization
"""
An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
"""
type Issue implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment {
type Issue implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & ProjectV2Owner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment {
"""
Reason that the conversation was locked.
"""
Expand Down Expand Up @@ -23604,7 +23604,7 @@ type OrgUpdateMemberRepositoryInvitationPermissionAuditEntry implements AuditEnt
"""
An account on GitHub, with one or more owners, that has repositories, members and teams.
"""
type Organization implements Actor & MemberStatusable & Node & PackageOwner & ProfileOwner & ProjectNextOwner & ProjectOwner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
type Organization implements Actor & MemberStatusable & Node & PackageOwner & ProfileOwner & ProjectNextOwner & ProjectOwner & ProjectV2Owner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
"""
Determine if this repository owner has any items that can be pinned to their profile.
"""
Expand Down Expand Up @@ -27383,7 +27383,7 @@ type ProjectNext implements Closable & Node & Updatable {
shortDescription: String

"""
The project's name.
The project's name. Falls back to "Untitled table" if blank.
"""
title: String

Expand Down Expand Up @@ -28126,6 +28126,13 @@ enum ProjectTemplate {
BUG_TRIAGE
}

"""
Represents an owner of a project (beta).
"""
interface ProjectV2Owner {
id: ID!
}

"""
A view within a Project.
"""
Expand Down Expand Up @@ -28329,7 +28336,7 @@ type PublicKeyEdge {
"""
A repository pull request.
"""
type PullRequest implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment {
type PullRequest implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & ProjectV2Owner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment {
"""
Reason that the conversation was locked.
"""
Expand Down Expand Up @@ -41542,6 +41549,11 @@ input StartRepositoryMigrationInput {
"""
repositoryName: String!

"""
Whether to skip migrating releases for the repository.
"""
skipReleases: Boolean

"""
The ID of the Octoshift migration source.
"""
Expand Down Expand Up @@ -44373,6 +44385,11 @@ type TreeEntry {
"""
isGenerated: Boolean!

"""
Number of lines in the file.
"""
lineCount: Int

"""
Entry file mode.
"""
Expand Down Expand Up @@ -47235,7 +47252,7 @@ type UpdateTopicsPayload {
"""
A user is an individual's account on GitHub that owns repositories and can make new content.
"""
type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwner & ProjectOwner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwner & ProjectOwner & ProjectV2Owner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
"""
Determine if this repository owner has any items that can be pinned to their profile.
"""
Expand Down
26 changes: 26 additions & 0 deletions lib/graphql/static/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type 'ProjectV2Owner' was added",
"`Issue` object implements 'ProjectV2Owner' interface",
"`Organization` object implements 'ProjectV2Owner' interface",
"`PullRequest` object implements 'ProjectV2Owner' interface",
"Input field `skipReleases` was added to input object type `StartRepositoryMigrationInput`",
"Field `lineCount` was added to object type `TreeEntry`",
"`User` object implements 'ProjectV2Owner' interface"
]
}
],
"previewChanges": [],
"upcomingChanges": [
{
"title": "The following changes will be made to the schema:",
"changes": [
"On member `UpdateProjectNextItemFieldInput.fieldWithSettingId`:`fieldWithSettingId` will be removed. Use `fieldConstraintId` instead **Effective 2022-10-01**."
]
}
],
"date": "2022-04-14"
},
{
"schemaChanges": [
{
Expand Down
6 changes: 3 additions & 3 deletions lib/graphql/static/prerendered-input-objects.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib/graphql/static/prerendered-objects.json

Large diffs are not rendered by default.

46 changes: 45 additions & 1 deletion lib/graphql/static/schema-dotcom.json
Original file line number Diff line number Diff line change
Expand Up @@ -23803,6 +23803,11 @@
"id": "projectnextowner",
"href": "/graphql/reference/interfaces#projectnextowner"
},
{
"name": "ProjectV2Owner",
"id": "projectv2owner",
"href": "/graphql/reference/interfaces#projectv2owner"
},
{
"name": "Reactable",
"id": "reactable",
Expand Down Expand Up @@ -33818,6 +33823,11 @@
"id": "projectowner",
"href": "/graphql/reference/interfaces#projectowner"
},
{
"name": "ProjectV2Owner",
"id": "projectv2owner",
"href": "/graphql/reference/interfaces#projectv2owner"
},
{
"name": "RepositoryDiscussionAuthor",
"id": "repositorydiscussionauthor",
Expand Down Expand Up @@ -39353,7 +39363,7 @@
},
{
"name": "title",
"description": "<p>The project's name.</p>",
"description": "<p>The project's name. Falls back to \"Untitled table\" if blank.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
Expand Down Expand Up @@ -40401,6 +40411,11 @@
"id": "projectnextowner",
"href": "/graphql/reference/interfaces#projectnextowner"
},
{
"name": "ProjectV2Owner",
"id": "projectv2owner",
"href": "/graphql/reference/interfaces#projectv2owner"
},
{
"name": "Reactable",
"id": "reactable",
Expand Down Expand Up @@ -61205,6 +61220,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "lineCount",
"description": "<p>Number of lines in the file.</p>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "mode",
"description": "<p>Entry file mode.</p>",
Expand Down Expand Up @@ -61662,6 +61685,11 @@
"id": "projectowner",
"href": "/graphql/reference/interfaces#projectowner"
},
{
"name": "ProjectV2Owner",
"id": "projectv2owner",
"href": "/graphql/reference/interfaces#projectv2owner"
},
{
"name": "RepositoryDiscussionAuthor",
"id": "repositorydiscussionauthor",
Expand Down Expand Up @@ -66848,6 +66876,14 @@
}
]
},
{
"name": "ProjectV2Owner",
"kind": "interfaces",
"id": "projectv2owner",
"href": "/graphql/reference/interfaces#projectv2owner",
"description": "<p>Represents an owner of a project (beta).</p>",
"fields": []
},
{
"name": "Reactable",
"kind": "interfaces",
Expand Down Expand Up @@ -81118,6 +81154,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "skipReleases",
"description": "<p>Whether to skip migrating releases for the repository.</p>",
"type": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "sourceId",
"description": "<p>The ID of the Octoshift migration source.</p>",
Expand Down
Loading

0 comments on commit 4154b0c

Please sign in to comment.