-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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 #16572 from mohanboddu/issue_templates
Update the issue templates
- Loading branch information
Showing
5 changed files
with
150 additions
and
57 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,101 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["kind/bug", "triage-needed"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
**NOTE** A large number of issues reported against Podman are often found to already be fixed in more current versions of the project. Before reporting an issue, please verify the version you are running with `podman version` and compare it to the latest release documented on the top of Podman's [README.md](../README.md). If they differ, please update your version of Podman to the latest possible and retry your command before creating an issue. | ||
Also, there is a running list of known issues in the [Podman Troubleshooting Guide](https://github.com/containers/podman/blob/main/troubleshooting.md), please reference that page before opening a new issue. | ||
Commands you might need to run to create the issue | ||
$ podman version | ||
$ podman info | ||
$ rpm -q podman | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Issue Description | ||
description: Please explain your issue | ||
value: "Describe your issue" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproducer | ||
attributes: | ||
label: Steps to reproduce the issue | ||
description: Please explain the steps to reproduce the issue | ||
value: "Steps to reproduce the issue\n1.\n2.\n3.\n" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: received_results | ||
attributes: | ||
label: Describe the results you received | ||
description: Please explain the results you are noticing | ||
value: "Describe the results you received" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected_results | ||
attributes: | ||
label: Describe the results you expected | ||
description: Please explain the results you are expecting | ||
value: "Describe the results you expected" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: podman_info | ||
attributes: | ||
label: podman info output | ||
description: Please copy and paste podman info output. | ||
value: If you are unable to run podman info for any reason, please provide the podman version, operating system and its version and the architecture you are running. | ||
render: shell | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: podman_in_a_container | ||
attributes: | ||
label: Podman in a container | ||
description: Please select Yes if you are running podman in a container | ||
options: | ||
- 'No' | ||
- 'Yes' | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: privileged_rootless | ||
attributes: | ||
label: Privileged Or Rootless | ||
description: Are you running the containers as privileged or non-root user? | ||
options: | ||
- Privileged | ||
- Rootless | ||
- type: dropdown | ||
id: upstream_latest | ||
attributes: | ||
label: Upstream Latest Release | ||
description: Have you tried running the [latest upstream release](https://github.com/containers/podman/releases/latest) | ||
options: | ||
- 'Yes' | ||
- 'No' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional_environment | ||
attributes: | ||
label: Additional environment details | ||
description: Please describe any additional environment details like (AWS, VirtualBox,...) | ||
value: "Additional environment details" | ||
- type: textarea | ||
id: additional_info | ||
attributes: | ||
label: Additional information | ||
description: Please explain the additional information you deem important | ||
value: "Additional information like issue happens only occasionally or issue happens with a particular architecture or on a particular setting" | ||
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 @@ | ||
blank_issues_enabled: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project | ||
title: "[Feature]: " | ||
labels: ["kind/feature"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! | ||
- type: textarea | ||
id: feature_description | ||
attributes: | ||
label: Feature request description | ||
description: Please explain your feature request and if it is related to a problem | ||
value: "A clear and concise description of what the feature request is about." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: potential_solution | ||
attributes: | ||
label: Suggest potential solution | ||
description: Please explain if you can suggest any potential solution | ||
value: "A clear and concise description of what you want to happen." | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Have you considered any alternatives? | ||
description: Please explain what alternatives you have tried. | ||
value: "A clear and concise description of any alternative solutions or features you've considered." | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional_context | ||
attributes: | ||
label: Additional context | ||
description: Please add any context to this feature request | ||
value: "Add any other context or screenshots about the feature request here." | ||
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