Skip to content

Commit bb496e4

Browse files
Merge pull request #35 from AdarshRawat1/Dev_Issue_templates
[feat] Added Issue template to repository
2 parents 5da6bbf + 8225f39 commit bb496e4

File tree

3 files changed

+100
-1
lines changed

3 files changed

+100
-1
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: 🐞 Bug report
2+
description: Create a report to help us improve (use this to report bugs only).
3+
title: "[BUG] <title>"
4+
labels: [🐞 bug]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Is there an existing issue for this?
9+
description: Please search to see if an issue already exists for the bug you encountered.
10+
options:
11+
- label: I have searched the existing issues
12+
required: true
13+
- type: textarea
14+
attributes:
15+
label: Describe the bug
16+
description: A clear and concise description of what the bug is. Include images if relevant.
17+
placeholder: A bug happened!
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Screenshots [optional]
23+
description: |
24+
Add screenshots to help explain your problem. You can also add a video here.
25+
26+
Tip: You can attach images or video files by clicking this area to highlight it and then dragging files in.
27+
validations:
28+
required: false
29+
- type: textarea
30+
attributes:
31+
label: Steps To Reproduce
32+
description: Steps to reproduce the bug.
33+
placeholder: |
34+
1. Visit '...'
35+
2. Click on '...'
36+
3. Scroll to '...'
37+
4. See error
38+
validations:
39+
required: true
40+
- type: textarea
41+
attributes:
42+
label: Expected behavior
43+
description: A clear and concise description of what you expected to happen
44+
validations:
45+
required: true
46+
- type: textarea
47+
attributes:
48+
label: Additional context
49+
description: |
50+
Links? References? Anything that will give us more context about the issue you are encountering!
51+
validations:
52+
required: false
53+
- type: dropdown
54+
id: assign
55+
attributes:
56+
label: Are you working on this?
57+
options:
58+
- "Yes"
59+
- "No"
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: ✨ Idea [Feature request]
2+
description: Tell us about the idea you have !
3+
title: "[Feature] <title>"
4+
labels: [idea]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Your suggestions are highly valuable.
10+
- type: textarea
11+
attributes:
12+
label: Feature description
13+
description: |
14+
Is your feature request related to a problem? A clear and concise description of what the feature is.
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Describe the solution
20+
description: A clear and concise description of what you want to happen.
21+
validations:
22+
required: true
23+
- type: textarea
24+
attributes:
25+
label: Describe alternatives
26+
description: |
27+
A clear and concise description of any alternative solutions or features you have considered.
28+
- type: textarea
29+
attributes:
30+
label: Additional context
31+
description: |
32+
Add any other additional context or screenshots about the feature request here.
33+
- type: dropdown
34+
id: assign
35+
attributes:
36+
label: Are you working on this?
37+
options:
38+
- "Yes"
39+
- "No"

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.idea*
22
.github/*
3-
!.github/pull_request_template.md
3+
.github/ISSUE_TEMPLATE/
4+
.github/pull_request_template.md
45
__pycache__/
56
*.nii.gz
67
bvals.txt

0 commit comments

Comments
 (0)