Spaces:
Runtime error
Runtime error
added new feature template
Browse files
.github/ISSUE_TEMPLATE/bug_report.yml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: "\U0001F41B Bug Report"
|
2 |
+
description: Submit a bug report to help us improve htrflow
|
3 |
+
labels: ["bug"]
|
4 |
+
body:
|
5 |
+
- type: textarea
|
6 |
+
id: what-happened
|
7 |
+
attributes:
|
8 |
+
label: What happened?
|
9 |
+
description: Also tell us, what did you expect to happen?
|
10 |
+
placeholder: Tell us what you see!
|
11 |
+
value: "A bug happened!"
|
12 |
+
validations:
|
13 |
+
required: true
|
14 |
+
|
15 |
+
- type: textarea
|
16 |
+
attributes:
|
17 |
+
label: Steps To Reproduce
|
18 |
+
description: Steps to reproduce the behavior.
|
19 |
+
placeholder: |
|
20 |
+
1. In this environment...
|
21 |
+
1. With this config...
|
22 |
+
1. Run '...'
|
23 |
+
1. See error...
|
24 |
+
validations:
|
25 |
+
required: false
|
26 |
+
|
27 |
+
- type: textarea
|
28 |
+
id: logs
|
29 |
+
attributes:
|
30 |
+
label: Relevant log output
|
31 |
+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
32 |
+
render: python
|
.github/ISSUE_TEMPLATE/feature_request.yml
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: "\U0001F680 Feature request"
|
2 |
+
description: Submit a proposal/request for a new htrflow feature
|
3 |
+
labels: [ "enhancement" ]
|
4 |
+
body:
|
5 |
+
- type: textarea
|
6 |
+
id: feature-request
|
7 |
+
validations:
|
8 |
+
required: true
|
9 |
+
attributes:
|
10 |
+
label: Feature request
|
11 |
+
description: |
|
12 |
+
A clear and concise description of the feature proposal. Please provide a link to the paper and code in case they exist.
|
13 |
+
|
14 |
+
- type: textarea
|
15 |
+
id: motivation
|
16 |
+
validations:
|
17 |
+
required: true
|
18 |
+
attributes:
|
19 |
+
label: Motivation
|
20 |
+
description: |
|
21 |
+
Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link here too.
|