-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add issue templates #2829
Merged
Merged
Add issue templates #2829
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,47 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["kind/bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Bug Description | ||
description: A clear and concise description of what the bug is | ||
placeholder: Youki crashes when running... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction-steps | ||
attributes: | ||
label: Steps to Reproduce | ||
description: How can we reproduce this, or how did you run into this? | ||
placeholder: | | ||
1. Create '...' | ||
2. Run youki as '....' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expectations | ||
attributes: | ||
label: Expectation | ||
description: What did you expect to happen instead? | ||
placeholder: Youki should have ran the container... | ||
- type: textarea | ||
id: info | ||
attributes: | ||
label: System and Setup Info | ||
description: Give us more info about the environment and setup | ||
placeholder: | | ||
Add information about your system. If Youki is compiling and running on your system, please add o/p of `youki info` . | ||
If you are experiencing issues in compiling Youki, or related deps, please add details regarding your setup, dependencies etc. | ||
Also if you are running Youki via something else (Docker, podman, k8s) add its info here. | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional Context | ||
description: Please add any additional context about the issue |
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,44 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project | ||
title: "[FEATURE]: " | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thank you for creating a feature request! | ||
- type: textarea | ||
id: background | ||
attributes: | ||
label: Background | ||
description: Please add required background information for this request | ||
placeholder: I'm working on a project where... | ||
- type: textarea | ||
id: request | ||
attributes: | ||
label: Feature Request | ||
description: Description of the feature you are requesting | ||
placeholder: I'm proposing that youki should... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: problem-desc | ||
attributes: | ||
label: Is the request related to some problem running youki? | ||
description: A clear and concise description of what the problem is. | ||
placeholder: I'm always frustrated when [...] | ||
- type: textarea | ||
id: expectations | ||
attributes: | ||
label: Proposed Solution | ||
description: A clear and concise description of what you want to happen. | ||
placeholder: Youki should .... | ||
- type: textarea | ||
id: considerations | ||
attributes: | ||
label: Considerations | ||
description: A clear and concise description of any alternative solutions, features and issues you've considered. | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional Context | ||
description: Please add any additional context or screenshots here. |
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 # allow people to not use forms, just directly create issues | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't know this option 👀