mirror of https://github.com/zcash/developers.git
Merge pull request #72 from zcash/more-graphql-bugfixes
More GraphQL bugfixes
This commit is contained in:
commit
68adbae860
|
@ -130,7 +130,7 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
|
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
|
||||||
DAG_VIEW: zcashd-deprecation
|
DAG_VIEW: zcashd-deprecation
|
||||||
TERMINATE_AT: "zcash/librustzcash#1349,zcash/zcash#5796,zcash/zcash#6453"
|
TERMINATE_AT: "zcash/wallet#5,zcash/wallet#6,zcash/zcash#5796"
|
||||||
|
|
||||||
- name: Render Sprout pool deprecation DAG
|
- name: Render Sprout pool deprecation DAG
|
||||||
run: python3 ./zcash-issue-dag.py
|
run: python3 ./zcash-issue-dag.py
|
||||||
|
|
|
@ -101,15 +101,19 @@ def get_epics(endpoint, workspace_id, repos):
|
||||||
d = endpoint(op)
|
d = endpoint(op)
|
||||||
data = op + d
|
data = op + d
|
||||||
|
|
||||||
epics_page = data.workspace.epics
|
if hasattr(data.workspace, 'epics'):
|
||||||
epics += [
|
epics_page = data.workspace.epics
|
||||||
(node.id, (node.issue.repository.gh_id, node.issue.number))
|
epics += [
|
||||||
for node in epics_page.nodes
|
(node.id, (node.issue.repository.gh_id, node.issue.number))
|
||||||
]
|
for node in epics_page.nodes
|
||||||
|
]
|
||||||
|
|
||||||
if epics_page.page_info.has_next_page:
|
if epics_page.page_info.has_next_page:
|
||||||
cursor = epics_page.page_info.end_cursor
|
cursor = epics_page.page_info.end_cursor
|
||||||
print('.', end='', flush=True)
|
print('.', end='', flush=True)
|
||||||
|
else:
|
||||||
|
print()
|
||||||
|
break
|
||||||
else:
|
else:
|
||||||
print()
|
print()
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue