Skip to content

Commit

Permalink
add feature and PR template
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu committed Dec 8, 2023
1 parent e05cb69 commit 651ab2e
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/issue_templates/bug.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
name: Report a bug
name: Report unexpected behaviour
description: If you came across something unexpected, let us know here!
labels: [bug, pending]

body:
- type: checkboxes
id: checks
attributes:
label: Has this already been reported?
description: If you haven't already, please look other existing issues to see if this bug has already been reported.
options:
- label: This is a new bug!
required: true

- type: textarea
id: expected-behaviour
attributes:
Expand Down
21 changes: 21 additions & 0 deletions .github/issue_templates/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Request a new feature or improvement
description: If you have a suggestion for something that might improve feud, let us know here!
labels: [feature, pending]

body:
- type: checkboxes
id: checks
attributes:
label: Does this suggestion already exist?
description: If you haven't already, please look through the documentation and other existing issues to see if this feature is already implemented.
options:
- label: This is a new feature!
required: true

- type: textarea
id: expected-behaviour
attributes:
label: Feature description
description: Please describe the new feature or improvement that you would like.
validations:
required: true
13 changes: 13 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Description

<!-- If your pull request fixes an existing issue (e.g. #xxx), mention "Fixes #xxx" here. -->

<!-- Please describe the purpose of the pull request. -->
<!-- Provide thorough details about what you changed and why. -->

## Checklist

- [ ] I have added new tests (if necessary).
- [ ] I have ensured that tests and coverage are passing on CI.
- [ ] I have updated any relevant documentation (if necessary).
- [ ] I have used a descriptive pull request title.

0 comments on commit 651ab2e

Please sign in to comment.