Skip to content

Commit bee9f6b

Browse files
author
Jozef Volak
committed
Add feature reuest template
1 parent 2c31b07 commit bee9f6b

File tree

2 files changed

+78
-0
lines changed

2 files changed

+78
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,48 @@ body:
66
- type: markdown
77
attributes:
88
value: Thank you for contributing to frinx-services-python-workers!
9+
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Description
14+
description: |
15+
Please explain what you're seeing and what you would expect to see.
16+
17+
Please provide as much detail as possible to make understanding and solving your problem as quick as possible.
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: example
23+
attributes:
24+
label: Example Code
25+
description: >
26+
If applicable, please add a self-contained,
27+
[minimal, reproducible, example](https://stackoverflow.com/help/minimal-reproducible-example)
28+
demonstrating the bug.
29+
30+
placeholder: |
31+
import frinx_worker
32+
33+
...
34+
render: Python
35+
36+
- type: textarea
37+
id: version
38+
attributes:
39+
label: Python, Poetry & Packages Version
40+
description: |
41+
Which versions of packages you are using?
42+
43+
Please run the following command (or equivalent) and copy the output below:
44+
45+
```bash
46+
poetry env info
47+
poetry show
48+
poetry self --version
49+
```
50+
51+
render: Text
52+
validations:
53+
required: true
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Frinx Services Python Workers feature request
2+
description: Suggest a new feature
3+
labels: [feature request]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thank you for contributing to frinx-services-python-workers!
9+
10+
- type: checkboxes
11+
id: searched
12+
attributes:
13+
label: Initial Checks
14+
description: |
15+
Just a few checks to make sure you need to create a feature request.
16+
17+
options:
18+
- label: I have searched for similar requests and couldn't find anything
19+
required: true
20+
21+
- type: textarea
22+
id: description
23+
attributes:
24+
label: Description
25+
description: |
26+
Please give as much detail as possible about the feature you would like to suggest.
27+
28+
You might like to add:
29+
* A demo of how code might look when using the feature
30+
* Your use case(s) for the feature
31+
* Why the feature should be added to frinx-services-python-workers
32+
validations:
33+
required: true

0 commit comments

Comments
 (0)