Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Bug report
description: Something in python-eveonline is broken or behaving unexpectedly
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
**Before filing a bug**, make sure the issue is in **python-eveonline** and not in the Home Assistant integration.
For HA-specific issues, use the [Home Assistant Core Issues](https://github.com/home-assistant/core/issues) tracker.

- type: textarea
id: description
attributes:
label: What happened?
description: A clear description of the bug.
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected behaviour
description: What did you expect to happen instead?
validations:
required: true

- type: textarea
id: reproduce
attributes:
label: Steps to reproduce
description: Minimal code snippet or steps that reproduce the problem.
render: python
validations:
required: true

- type: textarea
id: traceback
attributes:
label: Traceback or error output
description: Paste the full traceback if applicable.
render: text

- type: input
id: version
attributes:
label: python-eveonline version
placeholder: "e.g. 0.4.0"
validations:
required: true

- type: input
id: python
attributes:
label: Python version
placeholder: "e.g. 3.12"
validations:
required: true
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
blank_issues_enabled: true
blank_issues_enabled: false

contact_links:
- name: Home Assistant Core Issues
url: https://github.com/home-assistant/core/issues
about: >
If you are experiencing issues with the Home Assistant EVE Online integration
(not the python-eveonline library itself), please report them in the HA Core repository.
about: >-
Experiencing issues with the Home Assistant EVE Online integration
(not the python-eveonline library itself)? Report them in the HA Core repository.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Feature request
description: Suggest a new ESI endpoint or library feature
labels: ["enhancement"]
body:
- type: textarea
id: summary
attributes:
label: What would you like to see?
description: Describe the feature or endpoint you want added.
validations:
required: true

- type: input
id: endpoint
attributes:
label: ESI endpoint (if applicable)
description: Link to the ESI Swagger UI entry for the endpoint you want supported.
placeholder: "https://esi.evetech.net/ui/#/..."

- type: textarea
id: usecase
attributes:
label: Use case
description: Why is this needed? What problem does it solve?
validations:
required: true
Loading