zenhub

公告:Horizen更新&2020冬季假期安排

走远了吗. 提交于 2021-01-06 02:34:44
我们致力于提升项目的透明度,并进行了一些更改,以使我们能够更好地专注于交付关键产品版本并提高项目价值。这些更改使我们可以优化资源并确定项目的主要目标和优先级。 取消季度直播更新 从2021年1月1日开始,我们将不再继续进行季度实时更新。季度实时更新将由每周一次的discord公开例会取代,该事件在世界标准时间每个星期一上午11:30(美国东部时间)/下午5:30在Horizen官方Discord上进行。Weekly Insider还将直播到YouTube。 ZenHub(水龙头)的变更 我们已经将ZenHub的管理层移交给了合作伙伴Pipeline Marketing。此过渡不会影响ZenHub用户。Pipeline 将维护和升级ZenHub服务,并处理任何用户请求。 Rob: “Zen区块链基金会将全面加强其工作范围。在减半之前,我们正在采取先发制人的行动。计划将国库资金削减一半。在每周内部人员和季度实时流中,我们收到了来自社区的很多问题。为了确保我们继续保持团队的正常运转,我们将把所有运营精力集中在我们认为对长期而言是我们的竞争优势的关键和核心的事情上(侧链研发)。 团队在幕后正在进行大量工作,其中一些工作可以通过更改我们共享项目更新的方式以及维护和支持水龙头用户的需求来减轻。" 我们正在寻求完善我们的流程并关注团队的工作范围,以使我们的团队能够专注于关键的交付

Get Pipeline Value of GitHub Issues?

不打扰是莪最后的温柔 提交于 2020-12-03 06:06:09
问题 I use ZenHub to manage my Issues on GitHub. When I go to the detail of an issue I can see the property "pipeline" in GitHub which is exactly the column where the Issue is saved. Now I want to get the pipeline information out of my issues using the API of GitHub. But none of the Issue-Methods GET /repos/:owner/:repo/issues or GET /repos/:owner/:repo/issues/:number seem to have any information about the pipeline. Is it hidden anywhere else? 回答1: With the Github API v4, you can query the

How to set an issue pipeline with ZenHub API

半腔热情 提交于 2019-12-11 02:39:46
问题 We use ZenHub with our enterprise GitHub installation. I'm writing a script to move issues from one GitHub repo to another, including the ZenHub info. I've gotten the issues copied, labels and milestones set. I then use the ZenHub API to set estimates and create epics. All that works fine. My final step is to assign the issues to ZenHub pipelines. The following works fine (to get info about an issue): zenhub_headers = {"X-Authentication-Token": "%s" % zenhub_token} url = '%s/p1/repositories/

Creating an Epic from a Github Issue with Zenhub API

孤街醉人 提交于 2019-12-02 07:43:39
问题 This is a follow up question to How to set an issue pipeline with zenhub. I'm attempting to convert an issue to an epic in a Python script. I can convert the issue to an Epic, but I get an error when I attempt to add issues when creating the epic. This works: zenhub_headers = {"X-Authentication-Token": "%s" % token} target_zh_issues_url = '%s/p1/repositories/%d/issues' % (zh_api_endpoint, target_repo_id) params = {} response = requests.post(target_zh_issues_url + '/%s/convert_to_epic' % issue

Creating an Epic from a Github Issue with Zenhub API

我们两清 提交于 2019-12-02 03:08:55
This is a follow up question to How to set an issue pipeline with zenhub . I'm attempting to convert an issue to an epic in a Python script. I can convert the issue to an Epic, but I get an error when I attempt to add issues when creating the epic. This works: zenhub_headers = {"X-Authentication-Token": "%s" % token} target_zh_issues_url = '%s/p1/repositories/%d/issues' % (zh_api_endpoint, target_repo_id) params = {} response = requests.post(target_zh_issues_url + '/%s/convert_to_epic' % issue, headers=zenhub_headers, data=params) The code also works when I set params = {"issues":[]} But when