Skip to content

Commit 3b2f17b

Browse files
JonasAlaifkatyo
authored andcommitted
Fix type mismatch in graphql query
1 parent 95ccbb5 commit 3b2f17b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export async function lastCommitDate(
5151
try {
5252
result = await github.graphql(
5353
`
54-
query lastCommitDate($owner: String!, $repo: String!, $sha: String!, $path: String!) {
54+
query lastCommitDate($owner: String!, $repo: String!, $sha: GitObjectID!, $path: String!) {
5555
repository(owner: $owner, name: $repo) {
5656
object(oid: $sha) {
5757
... on Commit {

0 commit comments

Comments
 (0)