Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 31 additions & 6 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,34 @@
name: 错误报告 🐞
description: >-
创建一个新的错误报告。对于一般性问题,请在 GitHub Discussion 中发布。
description: 报告新 Bug
title: "[Bug]: "
labels:
- 待分类
- triage
- bug
body:
- type: input
id: platform
- type: checkboxes
id: duplication
attributes:
label: 相关平台
label: 请先搜索是否存在类似提交
options:
- label: 我确定这个提交不是重复的
validations:
required: true
- type: checkboxes
id: platform
attributes:
label: 相关平台
options:
- label: 所有小程序
- label: 微信小程序
- label: 支付宝小程序
- label: 百度小程序
- label: 字节跳动小程序
- label: QQ 轻应用
- label: 京东小程序
- label: 快应用平台(QuickApp)
- label: Web 平台(H5)
- label: 移动端(React-Native)
- label: 鸿蒙(harmony)
- type: input
id: library
attributes:
Expand Down Expand Up @@ -50,7 +67,9 @@ body:
description: 请提供复现问题的步骤。
placeholder: >-
1. Go to above link

2. Click on '....'

3. ...
- type: textarea
id: system
Expand All @@ -60,3 +79,9 @@ body:
render: bash
validations:
required: true
- type: checkboxes
id: contribute
attributes:
label: 贡献代码
options:
- label: 我愿意修复这个错误
13 changes: 11 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
blank_issues_enabled: false
contact_links:
- name: 创建提案
url: https://github.com/NervJS/taro/discussions/categories/rfc
about: 制定 Taro 下一步的更新计划
- name: 发起投票
url: https://github.com/NervJS/taro/discussions/categories/polls
about: 投票决定 Taro 的未来
- name: 社区支持
url: https://github.com/orgs/community/discussions
about: 其他问题请在 GitHub Discussion 中发布。
url: https://github.com/NervJS/taro/discussions/categories/q-a
about: 发布一般性问题
- name: 生态建设
url: https://github.com/NervJS/taro/discussions/categories/%E7%94%9F%E6%80%81
about: 工具库?组件库?快来丰富 Taro 生态
34 changes: 26 additions & 8 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,40 @@
name: 功能请求 🚀
description: >-
创建一个新的功能请求。对于一般性问题,请在 GitHub Discussion 中发布。
description: 提出新特性
title: "[Feat]: "
labels:
- 待分类
- feature
- triage
- feat
body:
- type: checkboxes
id: duplication
attributes:
label: 请先搜索是否存在类似提交
options:
- label: 我确定这个提交不是重复的
validations:
required: true
- type: textarea
id: feature
attributes:
label: 功能描述
description: 这个功能解决了什么问题
description: 这个功能增加了什么特性?解决了什么问题
validations:
required: true
- type: textarea
id: details
id: design
attributes:
label: 实现细节
description: 你希望如何实现这个功能?
label: 功能设计
description: 这个功能如何使用?(API / CLI ...)
validations:
required: true
- type: textarea
id: details
attributes:
label: 实现细节
description: 这个功能该如何实现?(具体的实现思路)
- type: checkboxes
id: contribute
attributes:
label: 贡献代码
options:
- label: 我愿意实现这个功能
30 changes: 13 additions & 17 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
<!--
请务必阅读贡献者指南:
https://github.com/NervJS/taro/blob/master/CONTRIBUTING.md
请务必阅读贡献者指南:https://github.com/NervJS/taro/blob/master/CONTRIBUTING.md
Update "[ ]" to "[x]" to check a box
-->
**这个 PR 做了什么?** (简要描述所做更改)

<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->

**这个 PR 做了什么?** (简要描述所做更改)
**这个 PR 是什么类型?** (至少选择一个)

- [ ] 错误修复 (Bugfix) issue: fix #
- [ ] 新功能 (Feature)
- [ ] 代码重构 (Refactor)
- [ ] TypeScript 类型定义修改 (Types)
- [ ] 文档修改 (Docs)
- [ ] 代码风格更新 (Code style update)
- [ ] 构建优化 (Chore)
- [ ] 其他,请描述 (Other, please describe):


**这个 PR 是什么类型?** (至少选择一个)

- [ ] 错误修复(Bugfix) issue: fix #
- [ ] 新功能(Feature)
- [ ] 代码重构(Refactor)
- [ ] TypeScript 类型定义修改(Typings)
- [ ] 文档修改(Docs)
- [ ] 代码风格更新(Code style update)
- [ ] 其他,请描述(Other, please describe):

**这个 PR 涉及以下平台:**
**这个 PR 涉及以下平台:**

- [ ] 所有小程序
- [ ] 微信小程序
Expand Down