Skip to content

Commit f422278

Browse files
authored
Merge pull request #43830 from github/repo-sync
Repo sync
2 parents 8898236 + e007425 commit f422278

File tree

5 files changed

+434
-0
lines changed

5 files changed

+434
-0
lines changed

src/graphql/data/fpt/changelog.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Type <code>ArchivePullRequestInput</code> was added</p>",
8+
"<p>Input field <code>clientMutationId</code> of type <code>String</code> was added to input object type <code>ArchivePullRequestInput</code></p>",
9+
"<p>Input field <code>pullRequestId</code> of type <code>ID!</code> was added to input object type <code>ArchivePullRequestInput</code></p>",
10+
"<p>Type <code>ArchivePullRequestPayload</code> was added</p>",
11+
"<p>Field <code>clientMutationId</code> was added to object type <code>ArchivePullRequestPayload</code></p>",
12+
"<p>Field <code>pullRequest</code> was added to object type <code>ArchivePullRequestPayload</code></p>",
13+
"<p>Type <code>UnarchivePullRequestInput</code> was added</p>",
14+
"<p>Input field <code>clientMutationId</code> of type <code>String</code> was added to input object type <code>UnarchivePullRequestInput</code></p>",
15+
"<p>Input field <code>pullRequestId</code> of type <code>ID!</code> was added to input object type <code>UnarchivePullRequestInput</code></p>",
16+
"<p>Type <code>UnarchivePullRequestPayload</code> was added</p>",
17+
"<p>Field <code>clientMutationId</code> was added to object type <code>UnarchivePullRequestPayload</code></p>",
18+
"<p>Field <code>pullRequest</code> was added to object type <code>UnarchivePullRequestPayload</code></p>",
19+
"<p>Field <code>archivePullRequest</code> was added to object type <code>Mutation</code></p>",
20+
"<p>Argument <code>input: ArchivePullRequestInput!</code> added to field <code>Mutation.archivePullRequest</code></p>",
21+
"<p>Field <code>unarchivePullRequest</code> was added to object type <code>Mutation</code></p>",
22+
"<p>Argument <code>input: UnarchivePullRequestInput!</code> added to field <code>Mutation.unarchivePullRequest</code></p>"
23+
]
24+
}
25+
],
26+
"previewChanges": [],
27+
"upcomingChanges": [],
28+
"date": "2026-04-15"
29+
},
230
{
331
"schemaChanges": [
432
{

src/graphql/data/fpt/schema.docs.graphql

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1698,6 +1698,36 @@ type ArchiveProjectV2ItemPayload {
16981698
item: ProjectV2Item
16991699
}
17001700

1701+
"""
1702+
Autogenerated input type of ArchivePullRequest
1703+
"""
1704+
input ArchivePullRequestInput {
1705+
"""
1706+
A unique identifier for the client performing the mutation.
1707+
"""
1708+
clientMutationId: String
1709+
1710+
"""
1711+
The Node ID of the pull request to archive.
1712+
"""
1713+
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
1714+
}
1715+
1716+
"""
1717+
Autogenerated return type of ArchivePullRequest.
1718+
"""
1719+
type ArchivePullRequestPayload {
1720+
"""
1721+
A unique identifier for the client performing the mutation.
1722+
"""
1723+
clientMutationId: String
1724+
1725+
"""
1726+
The pull request that was archived.
1727+
"""
1728+
pullRequest: PullRequest
1729+
}
1730+
17011731
"""
17021732
Autogenerated input type of ArchiveRepository
17031733
"""
@@ -25962,6 +25992,17 @@ type Mutation {
2596225992
input: ArchiveProjectV2ItemInput!
2596325993
): ArchiveProjectV2ItemPayload
2596425994

25995+
"""
25996+
Archive a pull request. Closes, locks, and marks the pull request as archived.
25997+
Only repository admins can archive pull requests.
25998+
"""
25999+
archivePullRequest(
26000+
"""
26001+
Parameters for ArchivePullRequest
26002+
"""
26003+
input: ArchivePullRequestInput!
26004+
): ArchivePullRequestPayload
26005+
2596526006
"""
2596626007
Marks a repository as archived.
2596726008
"""
@@ -27562,6 +27603,18 @@ type Mutation {
2756227603
input: UnarchiveProjectV2ItemInput!
2756327604
): UnarchiveProjectV2ItemPayload
2756427605

27606+
"""
27607+
Unarchive a pull request. Removes the archived flag from the pull request.
27608+
Does not automatically reopen or unlock the pull request. Only repository
27609+
admins can unarchive pull requests.
27610+
"""
27611+
unarchivePullRequest(
27612+
"""
27613+
Parameters for UnarchivePullRequest
27614+
"""
27615+
input: UnarchivePullRequestInput!
27616+
): UnarchivePullRequestPayload
27617+
2756527618
"""
2756627619
Unarchives a repository.
2756727620
"""
@@ -64859,6 +64912,36 @@ type UnarchiveProjectV2ItemPayload {
6485964912
item: ProjectV2Item
6486064913
}
6486164914

64915+
"""
64916+
Autogenerated input type of UnarchivePullRequest
64917+
"""
64918+
input UnarchivePullRequestInput {
64919+
"""
64920+
A unique identifier for the client performing the mutation.
64921+
"""
64922+
clientMutationId: String
64923+
64924+
"""
64925+
The Node ID of the pull request to unarchive.
64926+
"""
64927+
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
64928+
}
64929+
64930+
"""
64931+
Autogenerated return type of UnarchivePullRequest.
64932+
"""
64933+
type UnarchivePullRequestPayload {
64934+
"""
64935+
A unique identifier for the client performing the mutation.
64936+
"""
64937+
clientMutationId: String
64938+
64939+
"""
64940+
The pull request that was unarchived.
64941+
"""
64942+
pullRequest: PullRequest
64943+
}
64944+
6486264945
"""
6486364946
Autogenerated input type of UnarchiveRepository
6486464947
"""

src/graphql/data/fpt/schema.json

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2057,6 +2057,40 @@
20572057
}
20582058
]
20592059
},
2060+
{
2061+
"name": "archivePullRequest",
2062+
"kind": "mutations",
2063+
"id": "archivepullrequest",
2064+
"href": "/graphql/reference/mutations#archivepullrequest",
2065+
"description": "<p>Archive a pull request. Closes, locks, and marks the pull request as archived.\nOnly repository admins can archive pull requests.</p>",
2066+
"inputFields": [
2067+
{
2068+
"name": "input",
2069+
"type": "ArchivePullRequestInput!",
2070+
"id": "archivepullrequestinput",
2071+
"kind": "input-objects",
2072+
"href": "/graphql/reference/input-objects#archivepullrequestinput"
2073+
}
2074+
],
2075+
"returnFields": [
2076+
{
2077+
"name": "clientMutationId",
2078+
"type": "String",
2079+
"id": "string",
2080+
"kind": "scalars",
2081+
"href": "/graphql/reference/scalars#string",
2082+
"description": "<p>A unique identifier for the client performing the mutation.</p>"
2083+
},
2084+
{
2085+
"name": "pullRequest",
2086+
"type": "PullRequest",
2087+
"id": "pullrequest",
2088+
"kind": "objects",
2089+
"href": "/graphql/reference/objects#pullrequest",
2090+
"description": "<p>The pull request that was archived.</p>"
2091+
}
2092+
]
2093+
},
20602094
{
20612095
"name": "archiveRepository",
20622096
"kind": "mutations",
@@ -7511,6 +7545,40 @@
75117545
}
75127546
]
75137547
},
7548+
{
7549+
"name": "unarchivePullRequest",
7550+
"kind": "mutations",
7551+
"id": "unarchivepullrequest",
7552+
"href": "/graphql/reference/mutations#unarchivepullrequest",
7553+
"description": "<p>Unarchive a pull request. Removes the archived flag from the pull request.\nDoes not automatically reopen or unlock the pull request. Only repository\nadmins can unarchive pull requests.</p>",
7554+
"inputFields": [
7555+
{
7556+
"name": "input",
7557+
"type": "UnarchivePullRequestInput!",
7558+
"id": "unarchivepullrequestinput",
7559+
"kind": "input-objects",
7560+
"href": "/graphql/reference/input-objects#unarchivepullrequestinput"
7561+
}
7562+
],
7563+
"returnFields": [
7564+
{
7565+
"name": "clientMutationId",
7566+
"type": "String",
7567+
"id": "string",
7568+
"kind": "scalars",
7569+
"href": "/graphql/reference/scalars#string",
7570+
"description": "<p>A unique identifier for the client performing the mutation.</p>"
7571+
},
7572+
{
7573+
"name": "pullRequest",
7574+
"type": "PullRequest",
7575+
"id": "pullrequest",
7576+
"kind": "objects",
7577+
"href": "/graphql/reference/objects#pullrequest",
7578+
"description": "<p>The pull request that was unarchived.</p>"
7579+
}
7580+
]
7581+
},
75147582
{
75157583
"name": "unarchiveRepository",
75167584
"kind": "mutations",
@@ -100871,6 +100939,32 @@
100871100939
}
100872100940
]
100873100941
},
100942+
{
100943+
"name": "ArchivePullRequestInput",
100944+
"kind": "inputObjects",
100945+
"id": "archivepullrequestinput",
100946+
"href": "/graphql/reference/input-objects#archivepullrequestinput",
100947+
"description": "<p>Autogenerated input type of ArchivePullRequest.</p>",
100948+
"inputFields": [
100949+
{
100950+
"name": "clientMutationId",
100951+
"description": "<p>A unique identifier for the client performing the mutation.</p>",
100952+
"type": "String",
100953+
"id": "string",
100954+
"kind": "scalars",
100955+
"href": "/graphql/reference/scalars#string"
100956+
},
100957+
{
100958+
"name": "pullRequestId",
100959+
"description": "<p>The Node ID of the pull request to archive.</p>",
100960+
"type": "ID!",
100961+
"id": "id",
100962+
"kind": "scalars",
100963+
"href": "/graphql/reference/scalars#id",
100964+
"isDeprecated": false
100965+
}
100966+
]
100967+
},
100874100968
{
100875100969
"name": "ArchiveRepositoryInput",
100876100970
"kind": "inputObjects",
@@ -111169,6 +111263,32 @@
111169111263
}
111170111264
]
111171111265
},
111266+
{
111267+
"name": "UnarchivePullRequestInput",
111268+
"kind": "inputObjects",
111269+
"id": "unarchivepullrequestinput",
111270+
"href": "/graphql/reference/input-objects#unarchivepullrequestinput",
111271+
"description": "<p>Autogenerated input type of UnarchivePullRequest.</p>",
111272+
"inputFields": [
111273+
{
111274+
"name": "clientMutationId",
111275+
"description": "<p>A unique identifier for the client performing the mutation.</p>",
111276+
"type": "String",
111277+
"id": "string",
111278+
"kind": "scalars",
111279+
"href": "/graphql/reference/scalars#string"
111280+
},
111281+
{
111282+
"name": "pullRequestId",
111283+
"description": "<p>The Node ID of the pull request to unarchive.</p>",
111284+
"type": "ID!",
111285+
"id": "id",
111286+
"kind": "scalars",
111287+
"href": "/graphql/reference/scalars#id",
111288+
"isDeprecated": false
111289+
}
111290+
]
111291+
},
111172111292
{
111173111293
"name": "UnarchiveRepositoryInput",
111174111294
"kind": "inputObjects",

0 commit comments

Comments
 (0)