Skip to content

Commit 79922f7

Browse files
committed
V4.0.3
1 parent c305ff2 commit 79922f7

File tree

5 files changed

+117
-9
lines changed

5 files changed

+117
-9
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: Bug Report
2+
description: Report broken or incorrect behaviour
3+
labels: unconfirmed bug
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: >
8+
Thanks for taking the time to fill out a bug.
9+
Please note that this form is for bugs only!
10+
- type: input
11+
attributes:
12+
label: Summary
13+
description: A simple summary of your bug report
14+
validations:
15+
required: true
16+
- type: textarea
17+
attributes:
18+
label: Reproduction Steps
19+
description: >
20+
What you did to make it happen.
21+
validations:
22+
required: true
23+
- type: textarea
24+
attributes:
25+
label: Minimal Reproducible Code
26+
description: >
27+
A short snippet of code that showcases the bug.
28+
render: python
29+
- type: textarea
30+
attributes:
31+
label: Expected Results
32+
description: >
33+
What did you expect to happen?
34+
validations:
35+
required: true
36+
- type: textarea
37+
attributes:
38+
label: Actual Results
39+
description: >
40+
What actually happened?
41+
validations:
42+
required: true
43+
- type: checkboxes
44+
attributes:
45+
label: Checklist
46+
description: >
47+
Let's make sure you've properly done due diligence when reporting this issue!
48+
options:
49+
- label: I have searched the open issues for duplicates.
50+
required: true
51+
- label: I have shown the entire traceback, if possible.
52+
required: true
53+
- label: I have removed my token from display, if visible.
54+
required: true
55+
- type: textarea
56+
attributes:
57+
label: Additional Context
58+
description: If there is anything else to say, please do so here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Feature Request
2+
description: Suggest a feature for this library
3+
labels: feature request
4+
body:
5+
- type: input
6+
attributes:
7+
label: Summary
8+
description: >
9+
A short summary of what your feature request is.
10+
validations:
11+
required: true
12+
- type: dropdown
13+
attributes:
14+
multiple: false
15+
label: What is the feature request for?
16+
options:
17+
- The core library
18+
- The documentation
19+
validations:
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: The Problem
24+
description: >
25+
What problem is your feature trying to solve?
26+
What becomes easier or possible when this feature is implemented?
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: The Ideal Solution
32+
description: >
33+
What is your ideal solution to the problem?
34+
What would you like this feature to do?
35+
validations:
36+
required: true
37+
- type: textarea
38+
attributes:
39+
label: The Current Solution
40+
description: >
41+
What is the current solution to the problem, if any?
42+
validations:
43+
required: false
44+
- type: textarea
45+
attributes:
46+
label: Additional Context
47+
description: If there is anything else to say, please do so here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Summary
2+
3+
<!-- What is this pull request for? Does it fix any issues? -->
4+
5+
## Checklist
6+
- [ ] If code changes were made, then they have been tested.
7+
- [ ] I have updated the documentation to reflect the changes.
8+
- [ ] This PR fixes an issue.
9+
- [ ] This PR adds something new (e.g. new method or parameters).
10+
- [ ] This PR is a breaking change (e.g. methods or parameters removed/renamed)
11+
- [ ] This PR is **not** a code change (e.g. documentation, README, ...)

.github/pull_request_template

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)