-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #215 from HumairAK/issue_forms
Add issue forms for dspo.
- Loading branch information
Showing
2 changed files
with
124 additions
and
0 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,91 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["kind/bug", "priority/normal"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! Please, fill this form to help us improve the project. | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search to see if an issue already exists for the bug you encountered. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: dropdown | ||
id: deploy-type | ||
attributes: | ||
label: Deploy type | ||
description: | | ||
How did you deploy DSPO? | ||
multiple: false | ||
options: | ||
- Standalone DSPO (without ODH) | ||
- Manually deployed Kfdef | ||
- ODH Dashboard UI | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: | | ||
If using ODH, please provide the ODH version. | ||
If using standalone DSPO, please provide the tag version | ||
used for this repo, or state "main" if deploying | ||
directly from main branch. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: Describe your environment. | ||
placeholder: | | ||
* Python Version (if relevant): | ||
* SDK Version (if relevant): | ||
* OCP Pipelines Version: | ||
* OCP Version: | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Current Behavior | ||
description: A concise description of what you're experiencing. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. In this environment... | ||
2. With this config... | ||
3. Run '...' | ||
4. See error... | ||
- type: textarea | ||
id: workaround | ||
attributes: | ||
label: Workaround (if any) | ||
description: Any manual steps that allow you to resolve the issue | ||
placeholder: Tell us the steps you followed to resolve the issue! | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: anything-else | ||
attributes: | ||
label: Anything else | ||
description: | | ||
Any additional information you'd like to share | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project. | ||
title: "[Feature Request]: " | ||
labels: ["kind/enhancement", "priority/normal"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! Please, fill this form to help us improve the project. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Feature description | ||
description: A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: describe-alternatives | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
placeholder: Tell us about alternatives you've considered... | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Links? References? Add any other context or screenshots about the feature request here. | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false |