diff options
author | Dmitry <[email protected]> | 2020-08-14 15:58:04 +0100 |
---|---|---|
committer | Dmitry <[email protected]> | 2020-08-14 17:09:47 +0100 |
commit | c8a6ecc075f5198a0b197d5d99afa517d4a9818d (patch) | |
tree | 913dd97be5e2c75c8ab0636c43d6b1fbe50037b2 /xtask/src/codegen/last_commit_that_affected_path.graphql | |
parent | 034db28c542c04b22147da6722328bc74ff99386 (diff) |
Revert "replase sparse-checkout by github api"
This reverts commit 034db28c542c04b22147da6722328bc74ff99386.
Diffstat (limited to 'xtask/src/codegen/last_commit_that_affected_path.graphql')
-rw-r--r-- | xtask/src/codegen/last_commit_that_affected_path.graphql | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/xtask/src/codegen/last_commit_that_affected_path.graphql b/xtask/src/codegen/last_commit_that_affected_path.graphql deleted file mode 100644 index 8b256f392..000000000 --- a/xtask/src/codegen/last_commit_that_affected_path.graphql +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | query LastCommitThatAffectedPath($owner: String!, $name: String!, $path: String!) { | ||
2 | repository(owner: $owner, name: $name) { | ||
3 | object(expression: "master") { | ||
4 | __typename | ||
5 | ... on Commit { | ||
6 | history(path: $path, first:1) { | ||
7 | edges { | ||
8 | node { | ||
9 | commitUrl | ||
10 | committedDate | ||
11 | } | ||
12 | } | ||
13 | } | ||
14 | } | ||
15 | } | ||
16 | } | ||
17 | } \ No newline at end of file | ||