Max Gautier
2 months ago
Failed to extract signature
1 changed files with
29 additions and
0 deletions
-
scripts/list_releases.graphql
|
|
@ -0,0 +1,29 @@ |
|
|
|
query($repoWithReleases: [ID!]!, $repoWithTags: [ID!]!) { |
|
|
|
with_releases: nodes(ids: $repoWithReleases) { |
|
|
|
|
|
|
|
... on Repository { |
|
|
|
nameWithOwner |
|
|
|
releases(first: 100) { |
|
|
|
nodes { |
|
|
|
tagName |
|
|
|
isPrerelease |
|
|
|
releaseAssets { |
|
|
|
totalCount |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
with_tags: nodes(ids: $repoWithTags) { |
|
|
|
|
|
|
|
... on Repository { |
|
|
|
nameWithOwner |
|
|
|
refs(refPrefix: "refs/tags/", last: 100) { |
|
|
|
nodes { |
|
|
|
name |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |