Skip to content

Commit

Permalink
github issues
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuangjianguo committed Jan 3, 2024
1 parent d477b48 commit 2fedefd
Show file tree
Hide file tree
Showing 7 changed files with 128 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/ISSUE_TEMPLATE/--bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: 🐞 Bug report 错误报告
description: Create a bug report to help us improve Steedos. 填写bug报告,帮助我们改进华炎魔方。
title: "[Bug]: "
labels: [bug, needs triaging]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
感谢您填写此bug报告!
# - type: checkboxes
# attributes:
# label: Is there an existing issue for this? 是否已有相关Issue?
# options:
# - label: I have searched the existing issues. 我已经搜索过相关Issue。
# required: true
- type: textarea
attributes:
label: Description
description: |
A concise description of what you're experiencing and what you expect.
请详细描述你遇到的问题和预期的效果。
placeholder: |
When I do <X>, <Y> happens and I see the error message attached below:
```...```
What I expect is <Z>
validations:
required: true
- type: textarea
attributes:
label: Steps To Reproduce 重现步骤
description: |
Add steps to reproduce this behaviour, include console / network logs & videos.
请描述重现此问题的具体步骤,包括服务端和和浏览器日志,最好能提供截图或视频。
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: input
id: version
attributes:
label: Version 版本
description: |
The version of your Steedos Platform Instance.
您当前使用的华炎魔方版本号。
placeholder: "Cloud / Self Hosted - 2.4.3"
validations:
required: true
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/--feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: 🛠️ Feature request 功能需求
description: Suggest an idea to improve Steedos. 提出您的改进建议,帮助我们改进华炎魔方。
title: "[Feature]: "
labels: [new feature]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to request a feature for Steedos! 感谢您填写华炎魔方功能需求表单!
# - type: checkboxes
# attributes:
# label: Is there an existing issue for this? 你是否已经搜索过类似的需求?
# description: Please search to see if an issue related to this feature request already exists. 请搜索是否已经有用户提出过类似的需求。
# options:
# - label: I have searched the existing issues. 我已经搜索过了。
# required: true
- type: textarea
attributes:
label: Summary 摘要
description: One paragraph description of the feature. 请简单描述您的需求。
validations:
required: true
- type: textarea
attributes:
label: Why should this be worked on? 此需求的应用场景?
description: A concise description of the problems or use cases for this feature request. 请详细描述您遇到的问题已经如果通过新功能解决这个问题。
validations:
required: true
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/--task.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 📝 Task 任务
description: Create a task for the team to work on 创建开发任务
title: "[Task]: "
labels: [Task]
body:
# - type: checkboxes
# attributes:
# label: Is there an existing issue for this? 你是否已经搜索过类似的任务?
# description: Please search to see if an issue related to this feature request already exists. 请搜索是否已经有用户提出过类似的任务。
# options:
# - label: I have searched the existing issues. 我已经搜索过了。
# required: true
- type: textarea
attributes:
label: SubTasks 子任务
placeholder: |
- Sub Task 1
- Sub Task 2
validations:
required: false
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
3 changes: 3 additions & 0 deletions .vscode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# VS Code配置

该文件夹中保存的是vscode编辑器的配置文件,其中setting.json文件中定义了低代码开发时,编写yaml配置文件需要符合的schemas规范。
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"redhat.vscode-yaml", "gruntfuggly.todo-tree", "eamodio.gitlens", "OBKoro1.korofileheader", "hediet.vscode-drawio"
]
}
20 changes: 20 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"todo-tree.tree.showCountsInTree": true,
"todo-tree.tree.showBadges": true,
"todo-tree.tree.disableCompactFolders": true,
"yaml.completion": true,
"yaml.customTags": [
"tag:yaml.org,2002:js/function"
],
"yaml.schemas": {
"./node_modules/@steedos/schemas/app/schema.json": "/*.app.yml",
"./node_modules/@steedos/schemas/object/schema.json": "/*.object.yml",
"./node_modules/@steedos/schemas/field/schema.json": "/*.field.yml",
"./node_modules/@steedos/schemas/button/schema.json": "/*.button.yml",
"./node_modules/@steedos/schemas/listview/schema.json": "/*.listview.yml",
"./node_modules/@steedos/schemas/permission/schema.json": "/*.permission.yml",
"./node_modules/@steedos/schemas/permissionset/schema.json": "/*.permissionset.yml",
"./node_modules/@steedos/schemas/profile/schema.json": "/*.profile.yml",
"./node_modules/@steedos/schemas/dashboard/schema.json": "/*.dashboard.yml"
}
}

0 comments on commit 2fedefd

Please sign in to comment.