Skip to content
This repository was archived by the owner on Apr 1, 2024. It is now read-only.

Commit 2bd53d5

Browse files
author
Create or Update Pull Request Action
committed
WIP: github schema.graphql changed - please review
1 parent 9790af2 commit 2bd53d5

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

example/github/schema.graphql

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25365,6 +25365,26 @@ enum PullRequestState {
2536525365
OPEN
2536625366
}
2536725367

25368+
"""
25369+
A repository pull request template.
25370+
"""
25371+
type PullRequestTemplate {
25372+
"""
25373+
The body of the template
25374+
"""
25375+
body: String
25376+
25377+
"""
25378+
The filename of the template
25379+
"""
25380+
filename: String
25381+
25382+
"""
25383+
The repository the template belongs to
25384+
"""
25385+
repository: Repository!
25386+
}
25387+
2536825388
"""
2536925389
The connection type for PullRequestTimelineItem.
2537025390
"""
@@ -31042,6 +31062,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
3104231062
number: Int!
3104331063
): PullRequest
3104431064

31065+
"""
31066+
Returns a list of pull request templates associated to the repository
31067+
"""
31068+
pullRequestTemplates: [PullRequestTemplate!]
31069+
3104531070
"""
3104631071
A list of pull requests that have been opened in the repository.
3104731072
"""

0 commit comments

Comments
 (0)