Skip to content

Commit

Permalink
Add feature reuest template
Browse files Browse the repository at this point in the history
  • Loading branch information
Jozef Volak committed Nov 28, 2023
1 parent 2c31b07 commit bee9f6b
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,48 @@ body:
- type: markdown
attributes:
value: Thank you for contributing to frinx-services-python-workers!

- type: textarea
id: description
attributes:
label: Description
description: |
Please explain what you're seeing and what you would expect to see.
Please provide as much detail as possible to make understanding and solving your problem as quick as possible.
validations:
required: true

- type: textarea
id: example
attributes:
label: Example Code
description: >
If applicable, please add a self-contained,
[minimal, reproducible, example](https://stackoverflow.com/help/minimal-reproducible-example)
demonstrating the bug.
placeholder: |
import frinx_worker
...
render: Python

- type: textarea
id: version
attributes:
label: Python, Poetry & Packages Version
description: |
Which versions of packages you are using?
Please run the following command (or equivalent) and copy the output below:
```bash
poetry env info
poetry show
poetry self --version
```
render: Text
validations:
required: true
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: Frinx Services Python Workers feature request
description: Suggest a new feature
labels: [feature request]

body:
- type: markdown
attributes:
value: Thank you for contributing to frinx-services-python-workers!

- type: checkboxes
id: searched
attributes:
label: Initial Checks
description: |
Just a few checks to make sure you need to create a feature request.
options:
- label: I have searched for similar requests and couldn't find anything
required: true

- type: textarea
id: description
attributes:
label: Description
description: |
Please give as much detail as possible about the feature you would like to suggest.
You might like to add:
* A demo of how code might look when using the feature
* Your use case(s) for the feature
* Why the feature should be added to frinx-services-python-workers
validations:
required: true

0 comments on commit bee9f6b

Please sign in to comment.