Skip to content

Commit

Permalink
chore: migrate issue templates to forms
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenybai committed Aug 19, 2021
1 parent 4093646 commit e5bceb3
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 46 deletions.
93 changes: 62 additions & 31 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,71 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
title: 'Bug: '
labels: [bug]
assignees:
- aidenybai
body:
- type: textarea
id: bug
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
render: markdown
validations:
required: true

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
- type: textarea
id: repro
attributes:
label: To Reproduce
description: Steps to reproduce the behavior
render: markdown
validations:
required: true

**Expected behavior**
A clear and concise description of what you expected to happen.
- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
render: markdown
validations:
required: true

**Screenshots**
If applicable, add screenshots to help explain your problem.
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain your problem.
render: markdown
validations:
required: false

**Desktop (please complete the following information):**
- type: input
id: os
attributes:
label: Operating System
description: What operating system are you running when experiencing your issue?
placeholder: MacOS Big Sur
validations:
required: true

- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
- type: input
id: browser
attributes:
label: Browser
description: What browser are you running when experiencing your issue?
placeholder: Google Chrome 90
validations:
required: true

**Smartphone (please complete the following information):**

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
- type: textarea
id: context
attributes:
label: Additional context
description: Add any other context about the problem here.
render: markdown
validations:
required: false
---
55 changes: 40 additions & 15 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,44 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
name: Feature Request
description: Suggest an idea for this project
title: 'Feature: '
labels: [enhancement]
assignees:
- aidenybai
body:
- type: textarea
id: problem
attributes:
label: Is your feature request related to a problem? Please describe.
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
render: markdown
validations:
required: true

**Describe the solution you'd like**
A clear and concise description of what you want to happen.
- type: textarea
id: solution
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
render: markdown
validations:
required: true

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
- type: textarea
id: alternatives
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
render: markdown
validations:
required: true

**Additional context**
Add any other context or screenshots about the feature request here.
- type: textarea
id: context
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
render: markdown
validations:
required: false
---

0 comments on commit e5bceb3

Please sign in to comment.