Skip to content

Commit

Permalink
Fix type mismatch in graphql query
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasAlaif authored and katyo committed Apr 6, 2023
1 parent 95ccbb5 commit 3b2f17b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function lastCommitDate(
try {
result = await github.graphql(
`
query lastCommitDate($owner: String!, $repo: String!, $sha: String!, $path: String!) {
query lastCommitDate($owner: String!, $repo: String!, $sha: GitObjectID!, $path: String!) {
repository(owner: $owner, name: $repo) {
object(oid: $sha) {
... on Commit {
Expand Down

0 comments on commit 3b2f17b

Please sign in to comment.