Files
openide/plugins/github/resources/graphql/query/getPullRequestTemplates.graphql
Ivan Semenov 52ed3cf6fc [github] load PR templates via API
Minimal required version raised to 3.2 to access the necessary API

#IJPL-76555 Fixed

GitOrigin-RevId: a9ad6f0b11cd5144a3835ebb4c089fed76936f4f
2024-06-10 12:39:38 +00:00

7 lines
149 B
GraphQL

query($repoOwner: String!, $repoName: String!) {
repository(owner: $repoOwner, name: $repoName) {
pullRequestTemplates {
body
}
}
}