summaryrefslogtreecommitdiff
path: root/source/features/github-actions-indicators.gql
blob: c46bbe32a69362e67c3cc741b4c4d2f5d91305b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query GetWorkflows($owner: String!, $name: String!) {
	repository(owner: $owner, name: $name) {
		workflowFiles: object(expression: "HEAD:.github/workflows") {
			... on Tree {
				entries {
					name
					object {
						... on Blob {
							text
						}
					}
				}
			}
		}
	}
}