Skip to content

Commit

Permalink
🔧 corrected project ID; ➕ added stack trace & app version input
Browse files Browse the repository at this point in the history
  • Loading branch information
gy-mate committed Aug 12, 2024
1 parent a8f4303 commit 3d0c0e6
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 29 deletions.
36 changes: 28 additions & 8 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 🐛 Bug report
description: Create a bug report to help us improve this software
labels: ["bug"]
projects: ["gy-mate/moodle-to-vikwikiquiz"]
projects: ["gy-mate/1"]
assignees:
- gy-mate
body:
Expand All @@ -12,12 +12,27 @@ body:
description: A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
id: log
attributes:
label: Stack trace
description: The program should print a stack trace when an error occurs. Please paste it here, if applicable.
placeholder: |
Traceback (most recent call last):
File "main.py", line 1, in <module>
raise Exception("This is an exception")
Exception: This is an exception
render: python
- type: textarea
id: reproduce
attributes:
label: To reproduce
description: Steps to reproduce the behavior.
placeholder: "1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error"
placeholder: |
1. Type '...'
2. Press Enter
3. Type '...'
4. See the error
- type: textarea
id: expected
attributes:
Expand All @@ -27,13 +42,19 @@ body:
id: actual
attributes:
label: Actual behavior
description: A clear and concise description of what actually happens. If applicable, add screenshots to help explain your problem.
description: A clear and concise description of what is actually happening. If applicable, include screenshot(s) to help explain your problem.
- type: input
id: version
attributes:
label: Version
description: Which version of `moodle-to-vikwikiquiz` are you using?
validations:
required: true
- type: dropdown
id: os
attributes:
label: OS
description: Which operating system(s) are you using? (If applicable.)
multiple: true
description: Which operating system do you use? (If applicable.)
options:
- Linux
- macOS
Expand All @@ -44,8 +65,7 @@ body:
id: browser
attributes:
label: Browser
description: Which browser(s) are you using? (If applicable.)
multiple: true
description: Which browser do you use? (If applicable.)
options:
- Chrome
- Firefox
Expand All @@ -55,4 +75,4 @@ body:
id: version
attributes:
label: Version
description: Which version of the OS or browser are you using? (If applicable.)
description: What version of the OS or browser are you using? (If applicable.)
49 changes: 28 additions & 21 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,34 @@
name: ✨ Feature request
description: Suggest an idea for this software
labels: ["enhancement"]
projects: ["gy-mate/moodle-to-vikwikiquiz"]
projects: ["gy-mate/1"]
assignees:
- gy-mate
body:
- type: textarea
id: description
attributes:
label: Description
description: What should be improved?
placeholder: "I'm always frustrated when [...]"
validations:
required: true
- type: textarea
id: solution
attributes:
label: Preferred solution
description: A clear and concise description of what you would like to happen in these cases.
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Considered alternatives
description: A clear and concise description of any alternative solutions or features you've considered.
- type: textarea
id: description
attributes:
label: Description
description: What should be improved?
placeholder: "I always get frustrated when [...]"
validations:
required: true
- type: textarea
id: solution
attributes:
label: Preferred solution
description: A clear and concise description of what you want to happen in these cases.
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives considered
description: A clear and concise description of any alternative solutions or features you've considered.
- type: input
id: version
attributes:
label: Version
description: Which version of `moodle-to-vikwikiquiz` are you using?
validations:
required: true

0 comments on commit 3d0c0e6

Please sign in to comment.