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
60 changes: 60 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Bug Report
description: Report a bug in abovepy
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for reporting a bug! Please fill out the sections below.

- type: input
id: version
attributes:
label: abovepy version
description: "Run: python -c \"import abovepy; print(abovepy.__version__)\""
placeholder: "1.0.0"
validations:
required: true

- type: input
id: python-version
attributes:
label: Python version
description: "Run: python --version"
placeholder: "3.12.0"
validations:
required: true

- type: dropdown
id: os
attributes:
label: Operating System
options:
- Windows
- macOS
- Linux
validations:
required: true

- type: textarea
id: description
attributes:
label: Description
description: What happened? What did you expect?
validations:
required: true

- type: textarea
id: code
attributes:
label: Code to reproduce
description: Minimal code snippet that reproduces the issue
render: python

- type: textarea
id: traceback
attributes:
label: Traceback
description: Full error traceback if applicable
render: text
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Feature Request
description: Suggest an enhancement or new feature
title: "[Feature]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for suggesting a feature! Describe the use case below.

- type: textarea
id: problem
attributes:
label: Problem or use case
description: What are you trying to accomplish?
validations:
required: true

- type: textarea
id: solution
attributes:
label: Proposed solution
description: How would you like the API to work?

- type: dropdown
id: product
attributes:
label: Related product(s)
multiple: true
options:
- DEM (dem_phase1/2/3)
- Orthoimagery (ortho_phase1/2/3)
- LiDAR (laz_phase1/2/3)
- All products
- Not product-specific
Loading