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
19 changes: 0 additions & 19 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

54 changes: 54 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Bug report
description: Create a report to help us improve
title: "[BUG] "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!

- type: input
id: title
attributes:
label: Title
description: A clear and concise title of the issue
placeholder: "Type the issue title here"
validations:
required: true

- type: checkboxes
id: labels
attributes:
label: Labels
description: Select labels that apply to this issue
options:
- label: bug
- label: help wanted
- label: good first issue

- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen
placeholder: "Describe the expected behavior here..."
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual behavior
description: A clear and concise description of what actually happened
placeholder: "Describe what actually happened here..."
validations:
required: true

- type: textarea
id: environment
attributes:
label: Environment context
description: Add any other context about the environment you are using here
placeholder: "Add any other environmental context here such as cloud provider, k8s version, other versions, etc..."

7 changes: 2 additions & 5 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
contact_links:
- name: Ask questions
url: https://github.com/developmentseed/eoapi/discussions/categories/q-a
- name: Discussions and Q/A
url: https://github.com/developmentseed/eoapi-k8s/discussions/categories/q-a
about: Please ask and answer questions here.
- name: Feature Request / Ideas
url: https://github.com/developmentseed/eoapi/discussions/categories/general
about: Please share your ideas or feature requests here.
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Feature Request
description: Suggest a new feature or enhancement
title: "[FEATURE] "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to suggest a feature!

- type: input
id: title
attributes:
label: Title
description: A clear and concise title of the feature request
placeholder: "Type the feature title here"
validations:
required: true

- type: textarea
id: description
attributes:
label: Description
description: A clear and concise description of the feature you are requesting
placeholder: "Describe the feature here..."
validations:
required: true

- type: checkboxes
id: labels
attributes:
label: Labels
description: Select labels that apply to this feature request
options:
- label: enhancement
- label: discussion
- label: help wanted