Created
October 31, 2019 11:54
-
-
Save juananpe/56467fed702c866bab10bc5081be19b4 to your computer and use it in GitHub Desktop.
show last commit date of each branch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
search(query: "org:bardsoftware", type: REPOSITORY, last: 100) { | |
nodes { | |
... on Repository { | |
nameWithOwner | |
refs(first: 100, refPrefix: "refs/heads/") { | |
nodes { | |
name | |
target { | |
... on Commit { | |
oid | |
committedDate | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment