-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
1,866 additions
and
360 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: Report unexpected behaviour | ||
description: If you came across something unexpected, let us know here! | ||
labels: [bug, pending] | ||
|
||
body: | ||
- type: checkboxes | ||
id: exists | ||
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: | ||
label: Expected behaviour | ||
description: | | ||
Please describe the behaviour that you expected to see. | ||
If appropriate, provide any links to official Feud documentation that indicate this is the behaviour that is expected. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: observed-behaviour | ||
attributes: | ||
label: Observed behaviour | ||
description: | | ||
Please describe the unexpected behaviour that you observed. | ||
Make sure to provide as much information as possible, so that we can investigate as thoroughly as we can! | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: example | ||
attributes: | ||
label: Code to reproduce | ||
description: > | ||
Please provide a snippet of code that shows how to reproduce the bug, | ||
making sure that it is [minimal and reproducible](https://stackoverflow.com/help/minimal-reproducible-example). | ||
placeholder: | | ||
"""To reproduce my bug, run the following script with: | ||
python command.py --bug | ||
""" | ||
# command.py | ||
import feud | ||
def command(*, bug: bool = False): | ||
"""Command that demonstrates the bug.""" | ||
if bug: | ||
raise ValueError("Woops, this is buggy!") | ||
if __name__ == "__main__": | ||
feud.run(command) | ||
render: Python | ||
|
||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Version details | ||
description: | | ||
To help us get to the root of the problem as fast as possible, | ||
please run the following command to display version information about: | ||
- Python | ||
- Feud | ||
- Operating system | ||
```bash | ||
python -c "import feud; print(feud.version.version_info())" | ||
``` | ||
render: Text | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Got a question? | ||
url: "https://github.com/eonu/feud/discussions/new?category=question" | ||
about: Start a discussion on GitHub discussions where Feud developers and users can respond. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: exists | ||
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: feature-description | ||
attributes: | ||
label: Feature description | ||
description: Please describe the new feature or improvement that you would like. | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.