Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
62 changes: 62 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: 错误报告 🐞
description: >-
创建一个新的错误报告。对于一般性问题,请在 GitHub Discussion 中发布。
title: "[Bug]: "
labels:
- 待分类
- bug
body:
- type: input
id: platform
attributes:
label: 相关平台
validations:
required: true
- type: input
id: library
attributes:
label: 小程序基础库版本
description: 你可以在小程序开发者工具的「详情」中找到小程序基础库版本。
validations:
required: true
- type: dropdown
id: framework
attributes:
label: 使用框架
options:
- React
- Preact
- Vue 3
- Vue 2
validations:
required: true
- type: textarea
id: description
attributes:
label: 问题描述
validations:
required: true
- type: input
id: repro-link
attributes:
label: 复现链接
description: 请提供一个 GitHub 或其它代码托管平台仓库的链接。
validations:
required: true
- type: textarea
id: repro-steps
attributes:
label: 复现步骤
description: 请提供复现问题的步骤。
placeholder: >-
1. Go to above link
2. Click on '....'
3. ...
- type: textarea
id: system
attributes:
label: 环境信息
description: 运行 `npx taro info` 并将输出粘贴在下面。
render: bash
validations:
required: true
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: 新建一个新的 Issue
url: https://taro-issue-pro.pf.jd.com
about: 请点击 「Open」 按钮打开新链接创建 Issue
- name: 社区支持
url: https://github.com/orgs/community/discussions
about: 其他问题请在 GitHub Discussion 中发布。
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 功能请求 🚀
description: >-
创建一个新的功能请求。对于一般性问题,请在 GitHub Discussion 中发布。
title: "[Feat]: "
labels:
- 待分类
- feature
body:
- type: textarea
id: feature
attributes:
label: 功能描述
description: 这个功能解决了什么问题?
validations:
required: true
- type: textarea
id: details
attributes:
label: 实现细节
description: 你希望如何实现这个功能?
validations:
required: true
Loading