summaryrefslogtreecommitdiff
path: root/source/features/clean-repo-tabs.gql
blob: 6304f61a9cd2f079a55d65d783d96a24eb3f548e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
query CountWorkflows($owner: String!, $name: String!) {
	repository(owner: $owner, name: $name) {
		workflowFiles: object(expression: "HEAD:.github/workflows") {
			... on Tree {
				entries {
					oid
				}
			}
		}
	}
}