Add contributors plugin (#126)

This commit is contained in:
Simon Lecoq
2021-02-17 13:28:59 +01:00
committed by GitHub
parent 050fb2e330
commit fdf8b8f97b
10 changed files with 215 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
query ContributorsCommit {
repository(owner: "$owner" name: "$repo") {
object(expression: "$expression") {
... on Commit {
oid
abbreviatedOid
messageHeadline
committedDate
}
}
}
}