-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to new Issue Forms YAML spec (#1622)
* Enable blank issues Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com> * chore: Migrate to new Issue Forms YAML spec Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com> * Add old templates Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com> * Fix bad migration Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com> * fix: Missing empty line Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com> * fix: Missing empty line Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com> * fix: Missing empty line Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com>
- Loading branch information
1 parent
dfcbba9
commit a71a7a6
Showing
7 changed files
with
152 additions
and
14 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
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,17 @@ | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
labels: "needs-discussion,feature-request" | ||
issue_body: true | ||
inputs: | ||
- type: textarea | ||
attributes: | ||
label: Proposal | ||
description: "What would you like to have as a feature" | ||
required: true | ||
placeholder: "A clear and concise description of what you want to happen." | ||
- type: textarea | ||
attributes: | ||
label: Use-Case | ||
description: "How would this help you?" | ||
placeholder: "Tell us more what you'd like to achieve." | ||
required: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Suggest a new scaler | ||
about: Suggest a new scaler to add | ||
labels: "scaler, needs-discussion" | ||
issue_body: true | ||
inputs: | ||
- type: textarea | ||
attributes: | ||
label: Proposal | ||
description: "What would you like to scale on" | ||
placeholder: "A clear and concise description of what scaler you'd like to use and how you'd want to use it." | ||
- type: input | ||
attributes: | ||
label: Scaler Source | ||
description: On what do you want to scale? | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Scaling Mechanics | ||
description: How do you want to scale? | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Authentication Source | ||
description: How would you like to authenticate | ||
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
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,83 @@ | ||
name: Report a bug | ||
about: Create a report to help us improve | ||
labels: "bug" | ||
issue_body: true | ||
inputs: | ||
- type: textarea | ||
attributes: | ||
label: Report | ||
description: "What bug have you encountered?" | ||
placeholder: "A clear and concise description of what the bug is." | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: What did you expect to happen? | ||
required: true | ||
placeholder: What did you expect to happen? | ||
- type: textarea | ||
attributes: | ||
label: Actual Behavior | ||
description: Also tell us, what did you see is happen? | ||
required: true | ||
placeholder: Tell us what you see that is happening | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce the Problem | ||
description: "How can we reproduce this bug? Please walk us through it step by step." | ||
value: | | ||
1. | ||
2. | ||
3. | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Logs from KEDA operator | ||
description: "Provide logs from KEDA operator, if need be." | ||
value: | | ||
``` | ||
example | ||
``` | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: KEDA Version | ||
description: What version of KEDA that are you running? | ||
required: false | ||
choices: | ||
- "2.1.0" | ||
- "2.0.0" | ||
- "1.5.0" | ||
- "< 1.5.0" | ||
- "Other" | ||
- type: dropdown | ||
attributes: | ||
label: Kubernetes Version | ||
description: What version of Kubernetes that are you running? | ||
required: false | ||
choices: | ||
- "1.20" | ||
- "1.19" | ||
- "1.18" | ||
- "1.17" | ||
- "1.16" | ||
- "< 1.16" | ||
- "Other" | ||
- type: dropdown | ||
attributes: | ||
label: Platform | ||
description: Where is your cluster running? | ||
required: false | ||
choices: | ||
- Any | ||
- Alibaba Cloud | ||
- Amazon Web Services | ||
- Google Cloud | ||
- Microsoft Azure | ||
- Red Hat OpenShift | ||
- Other | ||
- type: input | ||
attributes: | ||
label: Scaler Details | ||
description: What scaler are you using? | ||
required: false | ||
placeholder: ie. Azure Service Bus, Kafka, ... |
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