-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from C2SM-RCM/lionel42-gh-issue-template
Adding gh issue templates
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Bug Report | ||
description: Report a bug or issue with emiprog. | ||
title: "[Bug]: " | ||
body: | ||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Bug summary | ||
description: Describe the bug in 1-2 short sentences | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Code for reproduction | ||
description: >- | ||
If possible, please provide the code to reproduce your bug. | ||
placeholder: Paste your code here. This field is automatically formatted as Python code. | ||
render: Python | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: details | ||
attributes: | ||
label: Additional information | ||
description: | | ||
- What are the conditions under which this bug happens? input parameters, edge cases, etc? | ||
- Has this worked in earlier versions? | ||
- Do you know why this bug is happening? | ||
- Any data required to run your script ? | ||
- Are you using the latest version of emiproc ? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: Help Required | ||
description: Request some help for your data or your use case | ||
title: "[HELP]: " | ||
labels: [Help required] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: >- | ||
If you want to do something specific with emiproc but you dont know how to do it, this is the right place. | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: Briefly describe the situation you face and what you would like to achieve with emiproc | ||
placeholder: | | ||
* I would like to load inventory [...] data in emiproc | ||
* I would like to export emiproc to model [...] | ||
* I would like to implement this operation [...] to my script but I don't know how to do. | ||
* ... | ||
validations: | ||
required: true |