Skip to content

Commit

Permalink
Merge pull request #215 from HumairAK/issue_forms
Browse files Browse the repository at this point in the history
Add issue forms for dspo.
  • Loading branch information
openshift-merge-robot authored Jul 25, 2023
2 parents 9b9a2a7 + 9c7b055 commit 55e78f2
Show file tree
Hide file tree
Showing 2 changed files with 124 additions and 0 deletions.
91 changes: 91 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
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
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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

0 comments on commit 55e78f2

Please sign in to comment.