Skip to content

Commit

Permalink
Introduce GitHub issue forms (#600)
Browse files Browse the repository at this point in the history
* Introduce GitHub issue forms

* Remove question form
  • Loading branch information
FollowTheProcess committed Apr 27, 2022
1 parent f3adccb commit ad773c8
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 30 deletions.
16 changes: 0 additions & 16 deletions .github/ISSUE_TEMPLATE/bug.md

This file was deleted.

52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: 🐞 Bug Report
description: File a bug/issue
title: "<title>"
labels:
- "bug"
body:
- type: textarea
attributes:
label: Current Behavior
description: A concise description of what you're experiencing.
validations:
required: false
- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: false
- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. With this Nox session/file...
2. Run '...'
3. See error...
validations:
required: false
- type: textarea
attributes:
label: Environment
description: |
examples:
- **OS**: Ubuntu 20.04
- **Python**: 3.9.7
- **Nox**: 0.14.2
value: |
- OS:
- Python:
- Nox:
render: Markdown
validations:
required: false
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: 🚀 Feature Request
description: Request a new feature or enhancement
title: "<title>"
labels:
- "enhancement"
body:
- type: textarea
attributes:
label: How would this feature be useful?
description: Describe any use cases this solves or frustrations it alleviates.
validations:
required: false

- type: textarea
attributes:
label: Describe the solution you'd like
description: If you have an idea on how to do this, let us know here!
validations:
required: false

- type: textarea
attributes:
label: Describe alternatives you've considered
description: If there's some workaround or alternative solutions, let us know here!
validations:
required: false

- type: textarea
attributes:
label: Anything else?
description: Any other relevant information or background.
validations:
required: false

0 comments on commit ad773c8

Please sign in to comment.