From 783174f40fdfccdb8511ddd27b53ea13ea86ab6c Mon Sep 17 00:00:00 2001 From: Yu Date: Mon, 27 Jun 2022 17:27:56 +0800 Subject: [PATCH 1/8] docs: add release flow docs --- .../venus-market-design-roadmap.md} | 0 documentation/misc/release-issue-template.md | 63 +++++++++++++++++++ documentation/{cn => zh}/refactor_notes.md | 0 3 files changed, 63 insertions(+) rename documentation/{venus-market module design & roadmap.md => en/venus-market-design-roadmap.md} (100%) create mode 100644 documentation/misc/release-issue-template.md rename documentation/{cn => zh}/refactor_notes.md (100%) diff --git a/documentation/venus-market module design & roadmap.md b/documentation/en/venus-market-design-roadmap.md similarity index 100% rename from documentation/venus-market module design & roadmap.md rename to documentation/en/venus-market-design-roadmap.md diff --git a/documentation/misc/release-issue-template.md b/documentation/misc/release-issue-template.md new file mode 100644 index 0000000000..389334b9f5 --- /dev/null +++ b/documentation/misc/release-issue-template.md @@ -0,0 +1,63 @@ +# Venus X.Y.Z Release + +## 🚢 预计发布时间 + + + +## ✅ 检查项 + +准备: + + - [ ] 从上个稳定版本中`fork`出`release/vX.Y.Z`分支;按[分支管理规范](https://github.com/ipfs-force-community/dev-guidances/blob/master/%E8%B4%A8%E9%87%8F%E7%AE%A1%E7%90%86/%E4%BB%A3%E7%A0%81/git%E4%BD%BF%E7%94%A8/%E5%88%86%E6%94%AF%E7%AE%A1%E7%90%86%E8%A7%84%E8%8C%83.md)进行分支开发 + - [ ] 把`master`中需要的功能特性PR合并至`release/vX.Y.Z`分支 + +准备RC版本: (可选) + +- [ ] `tag`一个`commit`为`vX.Y.Z-rc[x]` +- [ ] 标记为`pre-release` + +测试: + +- [ ] **阶段 0 - 自动化测试** + - 自动化测试 + - [ ] CI: 通过所有CI + +- [ ] **阶段 1 - 自测** + - 升级测试环境 (192.168.1.125) + - [ ] 检查节点同步情况 + - 升级预生产环境 + - [ ] 检查节点同步情况 + - `Metrics`报告 + - Block validation time + - Memory / CPU usage + - Number of goroutines + - IPLD block read latency + - Bandwidth usage + - [ ] 如果有一项比原来有很大的差距,调查并修复 + - 确认以下工作流 ( Butterfly / Calibnet / Mainnet ) + - [ ] 封装一个扇区 + - [ ] 发一个存储订单 + - [ ] 提交一个PoSt + - [ ] (optional) let a sector go faulty, and see it be recovered + +- [ ] **阶段 2 - 社区测试** + - [ ] 社区[Venus Master](https://filecoinproject.slack.com/archives/C03B30M20N7)测试 + - [ ] 新功能特性,配置变化等等的文档撰写 + +- [ ] **阶段 3 - 社区生产测试** + - [ ] 更新[CHANGELOG.md](https://github.com/filecoin-project/venus/blob/master/CHANGELOG.md) + - [ ] 邀请更多社区成员参与测试 + +- [ ] **阶段 4 - 发版** + - [ ] 最终准备 + - [ ] 确认`version.go`已更新 + - [ ] 准备changelog + - [ ] 把`release-vX.Y.Z`并回`releases` + - [ ] tag this merge commit (on the `releases` branch) with `vX.Y.Z` + - [ ] Cut the release [here](https://github.com/filecoin-project/venus/releases/new?prerelease=true&target=releases). + - [ ] 创建新版本的discussion讨论帖 + + +- [ ] **发版后** + - [ ] Update [release-issue-templat.md](https://github.com/filecoin-project/venus/blob/master/documentation/misc/release-issue-template.md) with any improvements determined from this latest release iteration. + - [ ] Create an issue using [release-issue-templat.md](https://github.com/filecoin-project/venus/blob/master/documentation/misc/release-issue-templat.md) for the next release. diff --git a/documentation/cn/refactor_notes.md b/documentation/zh/refactor_notes.md similarity index 100% rename from documentation/cn/refactor_notes.md rename to documentation/zh/refactor_notes.md From 134552c1fb1f9b5cc2d90d787cbf561ad4ec9eec Mon Sep 17 00:00:00 2001 From: Yu Date: Tue, 28 Jun 2022 15:34:11 +0800 Subject: [PATCH 2/8] docs: review change release flow template --- documentation/misc/release-issue-template.md | 33 +++++++++++--------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/documentation/misc/release-issue-template.md b/documentation/misc/release-issue-template.md index 389334b9f5..0e4f07a551 100644 --- a/documentation/misc/release-issue-template.md +++ b/documentation/misc/release-issue-template.md @@ -2,18 +2,22 @@ ## 🚢 预计发布时间 - + -## ✅ 检查项 +## 🤔 版本注意事项 + + + +## ✅ 常规检查项 准备: - [ ] 从上个稳定版本中`fork`出`release/vX.Y.Z`分支;按[分支管理规范](https://github.com/ipfs-force-community/dev-guidances/blob/master/%E8%B4%A8%E9%87%8F%E7%AE%A1%E7%90%86/%E4%BB%A3%E7%A0%81/git%E4%BD%BF%E7%94%A8/%E5%88%86%E6%94%AF%E7%AE%A1%E7%90%86%E8%A7%84%E8%8C%83.md)进行分支开发 - - [ ] 把`master`中需要的功能特性PR合并至`release/vX.Y.Z`分支 + - [ ] 把`master`中需要的功能特性`PR`合并至`release/vX.Y.Z`分支 准备RC版本: (可选) -- [ ] `tag`一个`commit`为`vX.Y.Z-rc[x]` +- [ ] `tag`为`vX.Y.Z-rc[x]` - [ ] 标记为`pre-release` 测试: @@ -23,23 +27,24 @@ - [ ] CI: 通过所有CI - [ ] **阶段 1 - 自测** - - 升级测试环境 (192.168.1.125) + - 升级dev测试环境 - [ ] 检查节点同步情况 - 升级预生产环境 - [ ] 检查节点同步情况 - - `Metrics`报告 + - `Metrics`报告(待开发) - Block validation time - Memory / CPU usage - Number of goroutines - IPLD block read latency - Bandwidth usage - [ ] 如果有一项比原来有很大的差距,调查并修复 - - 确认以下工作流 ( Butterfly / Calibnet / Mainnet ) + - 确认以下工作流 (Z版本可选;X、Y版本必选) - [ ] 封装一个扇区 - [ ] 发一个存储订单 - [ ] 提交一个PoSt - - [ ] (optional) let a sector go faulty, and see it be recovered - + - [ ] 出块验证,出一个块 + - [ ] Snapdeal验证 + - [ ] 让一个扇区变成faulty,观察是否恢复 - [ ] **阶段 2 - 社区测试** - [ ] 社区[Venus Master](https://filecoinproject.slack.com/archives/C03B30M20N7)测试 - [ ] 新功能特性,配置变化等等的文档撰写 @@ -52,12 +57,10 @@ - [ ] 最终准备 - [ ] 确认`version.go`已更新 - [ ] 准备changelog - - [ ] 把`release-vX.Y.Z`并回`releases` - - [ ] tag this merge commit (on the `releases` branch) with `vX.Y.Z` - - [ ] Cut the release [here](https://github.com/filecoin-project/venus/releases/new?prerelease=true&target=releases). - - [ ] 创建新版本的discussion讨论帖 + - [ ] `tag`为`vX.Y.Z` + - [ ] 创建新版本的discussion讨论帖 - [ ] **发版后** - - [ ] Update [release-issue-templat.md](https://github.com/filecoin-project/venus/blob/master/documentation/misc/release-issue-template.md) with any improvements determined from this latest release iteration. - - [ ] Create an issue using [release-issue-templat.md](https://github.com/filecoin-project/venus/blob/master/documentation/misc/release-issue-templat.md) for the next release. + - [ ] 按需更新[release-issue-templat.md](https://github.com/filecoin-project/venus/blob/master/documentation/misc/release-issue-template.md)模版 + - [ ] 使用[release-issue-templat.md](https://github.com/filecoin-project/venus/blob/master/documentation/misc/release-issue-templat.md)模版创建下一个发版issue From 24560d9a0bb2471b2884cbe74807f475fc09a530 Mon Sep 17 00:00:00 2001 From: Yu Date: Tue, 28 Jun 2022 15:36:40 +0800 Subject: [PATCH 3/8] docs: more optimizations --- documentation/misc/release-issue-template.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/documentation/misc/release-issue-template.md b/documentation/misc/release-issue-template.md index 0e4f07a551..6a4e421348 100644 --- a/documentation/misc/release-issue-template.md +++ b/documentation/misc/release-issue-template.md @@ -45,15 +45,11 @@ - [ ] 出块验证,出一个块 - [ ] Snapdeal验证 - [ ] 让一个扇区变成faulty,观察是否恢复 -- [ ] **阶段 2 - 社区测试** +- [ ] **阶段 2 - 社区Beta测试** - [ ] 社区[Venus Master](https://filecoinproject.slack.com/archives/C03B30M20N7)测试 - [ ] 新功能特性,配置变化等等的文档撰写 - -- [ ] **阶段 3 - 社区生产测试** - - [ ] 更新[CHANGELOG.md](https://github.com/filecoin-project/venus/blob/master/CHANGELOG.md) - - [ ] 邀请更多社区成员参与测试 -- [ ] **阶段 4 - 发版** +- [ ] **阶段 3 - 发版** - [ ] 最终准备 - [ ] 确认`version.go`已更新 - [ ] 准备changelog From b454ed7c8fa0cbdd4aeb92d56f92d241636b4c83 Mon Sep 17 00:00:00 2001 From: Yu Date: Wed, 29 Jun 2022 09:59:15 +0800 Subject: [PATCH 4/8] fix: review change --- documentation/misc/release-issue-template.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/documentation/misc/release-issue-template.md b/documentation/misc/release-issue-template.md index 6a4e421348..176faac224 100644 --- a/documentation/misc/release-issue-template.md +++ b/documentation/misc/release-issue-template.md @@ -8,6 +8,8 @@ + + ## ✅ 常规检查项 准备: @@ -31,13 +33,6 @@ - [ ] 检查节点同步情况 - 升级预生产环境 - [ ] 检查节点同步情况 - - `Metrics`报告(待开发) - - Block validation time - - Memory / CPU usage - - Number of goroutines - - IPLD block read latency - - Bandwidth usage - - [ ] 如果有一项比原来有很大的差距,调查并修复 - 确认以下工作流 (Z版本可选;X、Y版本必选) - [ ] 封装一个扇区 - [ ] 发一个存储订单 @@ -54,6 +49,7 @@ - [ ] 确认`version.go`已更新 - [ ] 准备changelog - [ ] `tag`为`vX.Y.Z` + - [ ] 版本发布至`releases`(注:[github](https://github.com/filecoin-project/venus/releases)有区分`tag`和`releases`) - [ ] 创建新版本的discussion讨论帖 From 96e304a4a6f7ebf8941e0831d03b80153a015100 Mon Sep 17 00:00:00 2001 From: Yu Date: Fri, 1 Jul 2022 10:25:46 +0800 Subject: [PATCH 5/8] docs: update backport rules --- documentation/misc/release-issue-template.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/documentation/misc/release-issue-template.md b/documentation/misc/release-issue-template.md index 176faac224..8c8146797e 100644 --- a/documentation/misc/release-issue-template.md +++ b/documentation/misc/release-issue-template.md @@ -15,7 +15,17 @@ 准备: - [ ] 从上个稳定版本中`fork`出`release/vX.Y.Z`分支;按[分支管理规范](https://github.com/ipfs-force-community/dev-guidances/blob/master/%E8%B4%A8%E9%87%8F%E7%AE%A1%E7%90%86/%E4%BB%A3%E7%A0%81/git%E4%BD%BF%E7%94%A8/%E5%88%86%E6%94%AF%E7%AE%A1%E7%90%86%E8%A7%84%E8%8C%83.md)进行分支开发 - - [ ] 把`master`中需要的功能特性`PR`合并至`release/vX.Y.Z`分支 + - [ ] 把`master`中需要的功能特性`PR`通过[backport](https://github.com/filecoin-project/lotus/pull/8847)的方式合并至`release/vX.Y.Z`分支 + + 准备RC版本: (可选) From ba682c56d96d53001bab27937f974de1396cdd5b Mon Sep 17 00:00:00 2001 From: Yu Date: Fri, 1 Jul 2022 10:46:07 +0800 Subject: [PATCH 6/8] docs: update wording on release flow --- documentation/misc/release-issue-template.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/documentation/misc/release-issue-template.md b/documentation/misc/release-issue-template.md index 8c8146797e..c3b38d5752 100644 --- a/documentation/misc/release-issue-template.md +++ b/documentation/misc/release-issue-template.md @@ -60,8 +60,19 @@ - [ ] 准备changelog - [ ] `tag`为`vX.Y.Z` - [ ] 版本发布至`releases`(注:[github](https://github.com/filecoin-project/venus/releases)有区分`tag`和`releases`) + - [ ] 检查是否有`PR`单独提交至`release/vX.Y.Z`分支,并提交`Release back to master`的`PR` - [ ] 创建新版本的discussion讨论帖 + + - [ ] **发版后** - [ ] 按需更新[release-issue-templat.md](https://github.com/filecoin-project/venus/blob/master/documentation/misc/release-issue-template.md)模版 From f9be22761dc01a3a9b9b1ab5e8847254aa2200e0 Mon Sep 17 00:00:00 2001 From: Yu Date: Wed, 13 Jul 2022 16:05:30 +0800 Subject: [PATCH 7/8] chore: issue template update --- .github/ISSUE_TEMPLATE/bug_report.yml | 109 ++++++++++----------- .github/ISSUE_TEMPLATE/enhancement.yml | 74 +++++++------- .github/ISSUE_TEMPLATE/feature_request.yml | 75 -------------- 3 files changed, 88 insertions(+), 170 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 3a7803fe2f..13cabd9a00 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,99 +1,92 @@ name: "Bug Report" -description: "File a bug report to help us improve" -labels: [need/triage, kind/bug] +description: "报告 bug / File a bug report to help us improve" +labels: [C-bug, community] body: - type: checkboxes attributes: - label: Checklist - description: Please check off the following boxes before continuing to file a bug report! - options: - - label: This is **not** a security-related bug/issue. If it is, please follow please follow the [security policy](https://github.com/filecoin-project/venus/security/policy). - required: true - - label: This is **not** a question or a support request. If you have any lotus related questions, please ask in the [venus forum](https://github.com/filecoin-project/venus/discussions). - required: true - - label: This is **not** a new feature request. If it is, please file a [feature request](https://github.com/filecoin-project/venus/issues/new?assignees=&labels=need%2Ftriage%2Ckind%2Ffeature&template=feature_request.yml) instead. - required: true - - label: This is **not** an enhancement request. If it is, please file a [improvement suggestion](https://github.com/filecoin-project/venus/issues/new?assignees=&labels=need%2Ftriage%2Ckind%2Fenhancement&template=enhancement.yml) instead. - required: true - - label: I **have** searched on the [issue tracker](https://github.com/filecoin-project/venus/issues) and the [venus forum](https://github.com/filecoin-project/venus/discussions), and there is no existing related issue or discussion. - required: true - - label: I am running the [`latest release`](https://github.com/filecoin-project/venus/releases), or the most recent RC(release canadiate) for the upcoming release or the dev branch(master), or have an issue updating to any of these. - required: true - - label: I did not make any code changes to venus. - required: false -- type: checkboxes - attributes: - label: Venus component - description: Please select the venus component you are filing a bug for + label: 链服务模块 / Chain Service Components + description: | + 选择涉及模块。 + Please select the related components. options: - - label: venus daemon - chain sync + - label: venus required: false - - label: venus auth - authentication + - label: venus-auth required: false - - label: venus gateway - chain service gateway + - label: venus-gateway required: false - - label: venus miner - mining and block production + - label: venus-messager required: false - - label: venus sealer/worker - sealing + - label: venus-miner required: false - - label: venus sealer - proving(WindowPoSt) + - label: 文档 / docs required: false - - label: venus market - storage deal - required: false - - label: venus market - retrieval deal - required: false - - label: venus market - data transfer +- type: checkboxes + attributes: + label: 订单服务模块 / Deal Service Components + description: | + 选择涉及模块。 + Please select the related components. + options: + - label: venus-market required: false - - label: venus light-weight client + - label: 文档 / docs required: false - - label: venus JSON-RPC API +- type: checkboxes + attributes: + label: 算力服务模块 / Storage Power Service Components + description: | + 选择涉及模块。 + Please select the related components. + options: + - label: venus-sector-manager required: false - - label: venus messager - message management (mpool) + - label: venus-worker required: false - - label: Other + - label: 文档 / docs required: false - type: textarea id: version attributes: - label: Venus Version + label: 版本 / Version render: text - description: Enter the output of `./venus version` and `./venus-sealer -v` if applicable. + description: | + 填写 `./venus version` 和/或 `./venus-messager --version` 的输出内容。 + Enter the output of `./venus version` and/or `./venus-messager --version` if applicable. placeholder: | - e.g. - Daemon: "Commit": "v1.0.4 c816de06debd1874bc0b2c9cad10a80e8f388681" - Local: venus-sealer version 1.2.6+git.eb586f1.dirty + e.g. + { "Version": "1.6.0+git.3652863fa.dirty" } + venus message version v1.6.0--58feea4 validations: required: true - type: textarea - id: Description + id: description attributes: - label: Describe the Bug + label: 描述 / Describe the Bug description: | + 填写你所遇到的崩溃、异常信息或你认为与预期结果不符的行为。 This is where you get to tell us what went wrong, when doing so, please try to provide a clear and concise description of the bug with all related information: - * What you were doing when you experienced the bug? - * Any *error* messages you saw, *where* you saw them, and what you believe may have caused them (if you have any ideas). - * What is the expected behaviour? - * For sealing issues, include the output of `./venus-sealer sectors status --log ` for the failed sector(s). - * For proving issues, include the output of `./venus-sealer proving` info. - * For deal making issues, include the output of `./market-client list-deals -v` and/or `./venus-market storage-deals|retrieval-deals|data-transfers list [-v]` commands for the deal(s) in question. validations: required: true - type: textarea - id: extraInfo + id: logging attributes: - label: Logging Information + label: 日志 / Logging Information render: text description: | - Please provide debug logs of the problem, remember you can get set log level. + 填写可以帮助定位问题的日志信息。 + Please provide debug logs of the problem. If you don't provide detailed logs when you raise the issue it will almost certainly be the first request I make before furthur diagnosing the problem. validations: required: true - type: textarea - id: RepoSteps + id: reproduce attributes: - label: Repo Steps - description: "Steps to reproduce the behavior" - value: | + label: 重现步骤 / Repo Steps + description: | + 能够重现问题的步骤。 + Steps to reproduce the behavior. + placeholder: | 1. Run '...' 2. Do '...' 3. See error '...' diff --git a/.github/ISSUE_TEMPLATE/enhancement.yml b/.github/ISSUE_TEMPLATE/enhancement.yml index 73c3430d7d..f397902ddb 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.yml +++ b/.github/ISSUE_TEMPLATE/enhancement.yml @@ -1,56 +1,56 @@ -name: Enhancement -description: Suggest an improvement to an existing venus feature. -labels: [need/triage, kind/enhancement] +name: 功能特性 / Enhancement +description: "提议新功能,或改善已有功能 / New feature request or enhancement suggestion" +labels: [C-enhancement, community] body: - type: checkboxes attributes: - label: Checklist - description: Please check off the following boxes before continuing to create an improvement suggestion! + label: 链服务模块 / Chain Service Components + description: | + 选择涉及模块。 + Please select the related components. options: - - label: This is **not** a new feature or an enhancement to the Filecoin protocol. If it is, please open an [FIP issue](https://github.com/filecoin-project/FIPs/blob/master/FIPS/fip-0001.md). - required: true - - label: This is **not** a new feature request. If it is, please file a [feature request](https://github.com/filecoin-project/venus/issues/new?assignees=&labels=need%2Ftriage%2Ckind%2Ffeature&template=feature_request.yml) instead. - required: true - - label: This is **not** brainstorming ideas. If you have an idea you'd like to discuss, please open a new discussion on [the venus forum](https://github.com/filecoin-project/venus/discussions/categories/ideas) and select the category as `Ideas`. - required: true - - label: I **have** a specific, actionable, and well motivated improvement to propose. - required: true -- type: checkboxes - attributes: - label: Venus component - description: Please select the venus component you are filing an improvement request for - options: - - label: venus daemon - [chain service] chain sync + - label: venus required: false - - label: venus auth - [chain service] authentication + - label: venus-auth required: false - - label: venus messager - [chain service] message management (mpool) + - label: venus-gateway required: false - - label: venus gateway - [chain service] gateway + - label: venus-messager required: false - - label: venus miner - [chain service] mining and block production + - label: venus-miner required: false - - label: venus sealer/worker - sealing + - label: 文档 / docs required: false - - label: venus sealer - proving (WindowPoSt) - required: false - - label: venus market - storage deal - required: false - - label: venus market - retrieval deal +- type: checkboxes + attributes: + label: 订单服务模块 / Deal Service Components + description: | + 选择涉及模块。 + Please select the related components. + options: + - label: venus-market required: false - - label: venus market - data transfer + - label: 文档 / docs required: false - - label: venus light-weight client +- type: checkboxes + attributes: + label: 算力服务模块 / Storage Power Service Components + description: | + 选择涉及模块。 + Please select the related components. + options: + - label: venus-sector-manager required: false - - label: venus JSON-RPC API + - label: venus-worker required: false - - label: Other + - label: 文档 / docs required: false - type: textarea - id: request + id: description attributes: - label: Improvement Suggestion - description: A clear and concise description of what the motivation or the current problem is and what is the suggested improvement? - placeholder: Ex. Currently venus... However, as a storage provider, I'd like... + label: 描述 / Description + placeholder: | + 是否可以考虑... + I suggest ... validations: required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml deleted file mode 100644 index d1932a9d2a..0000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ /dev/null @@ -1,75 +0,0 @@ -name: Feature request -description: Suggest an idea for venus -labels: [need/triage, kind/feature] -body: -- type: checkboxes - attributes: - label: Checklist - description: Please check off the following boxes before continuing to create a new feature request! - options: - - label: This is **not** a new feature or an enhancement to the Filecoin protocol. If it is, please open an [FIP issue](https://github.com/filecoin-project/FIPs/blob/master/FIPS/fip-0001.md). - required: true - - label: This is **not** brainstorming ideas. If you have an idea you'd like to discuss, please open a new discussion on [the venus forum](https://github.com/filecoin-project/venus/discussions/categories/ideas) and select the category as `Ideas`. - required: true - - label: I **have** a specific, actionable, and well motivated feature request to propose. - required: true -- type: checkboxes - attributes: - label: Venus component - description: Please select the venus component you are filing a new feature request for - options: - - label: venus daemon - [chain service] chain sync - required: false - - label: venus auth - [chain service] authentication - required: false - - label: venus messager - [chain service] message management (mpool) - required: false - - label: venus gateway - [chain service] gateway - required: false - - label: venus miner - [chain service] mining and block production - required: false - - label: venus sealer/worker - sealing - required: false - - label: venus sealer - proving (WindowPoSt) - required: false - - label: venus market - storage deal - required: false - - label: venus market - retrieval deal - required: false - - label: venus market - data transfer - required: false - - label: venus light-weight client - required: false - - label: venus JSON-RPC API - required: false - - label: Other - required: false -- type: textarea - id: request - attributes: - label: What is the motivation behind this feature request? Is your feature request related to a problem? Please describe. - description: A clear and concise description of what the motivation or the problem is. - placeholder: Ex. I'm always frustrated when [...] - validations: - required: true -- type: textarea - id: solution - attributes: - label: Describe the solution you'd like - description: A clear and concise description of what you want to happen. - validations: - required: true -- type: textarea - id: alternates - attributes: - label: Describe alternatives you've considered - description: A clear and concise description of any alternative solutions or features you've considered. - validations: - required: false -- type: textarea - id: extra - attributes: - label: Additional context - description: Add any other context, design docs or screenshots about the feature request here. - validations: - required: false From c58d7d972cd21ecd8bd6354c7c3a68c7753540d1 Mon Sep 17 00:00:00 2001 From: Yu Date: Fri, 15 Jul 2022 16:57:36 +0800 Subject: [PATCH 8/8] docs: review change --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 13cabd9a00..cef0e5d3c8 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -51,8 +51,8 @@ body: label: 版本 / Version render: text description: | - 填写 `./venus version` 和/或 `./venus-messager --version` 的输出内容。 - Enter the output of `./venus version` and/or `./venus-messager --version` if applicable. + 填写组件的版本。 + Enter version of the component if applicable. placeholder: | e.g. { "Version": "1.6.0+git.3652863fa.dirty" }