forked from ubuntu/app-center
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding ISSUE_TEMPLATE directory
- Loading branch information
1 parent
c46913d
commit a7ff9b5
Showing
3 changed files
with
130 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,82 @@ | ||
name: Bug report for the App Center | ||
description: Create a report to help us improve | ||
labels: | ||
- bug | ||
assignees: | ||
- d-loose | ||
- sminez | ||
- matthew-hagemann | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: | | ||
Please search to see if an issue already exists for this feature: https://github.com/canonical/app-center/issues. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: | | ||
A clear and concise description of what the bug is. You can also attach screenshots or recordings. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce the behavior | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: expected_behavior | ||
attributes: | ||
label: Expected behavior | ||
description: | | ||
A clear and concise description of what you expected to happen. | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: Ubuntu release | ||
description: What version of our Ubuntu are you running? | ||
options: | ||
- '24.10' | ||
- 24.04 LTS | ||
- 22.04 LTS | ||
- 20.04 LTS | ||
- Other (specify in the last field) | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: What architecture are you using? | ||
multiple: false | ||
options: | ||
- amd64 | ||
- arm64 | ||
- Other (specify in the last field) | ||
- I don't know | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: System info | ||
description: | | ||
Please run this command in your terminal: | ||
```uname -rv && snap info snap-store``` | ||
and paste the output here. It will give us information about your system such as the kernel version and the versions of the relevant packages. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: | | ||
You can attach screenshots, recordings, logs, or any other information that you think might be helpful. Please remember to anonymize any personal data. | ||
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,6 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Contact Canonical | ||
url: https://ubuntu.com/contact-us/form | ||
about: Contact us to get more information | ||
|
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,42 @@ | ||
name: Feature request | ||
description: Suggest an idea for the App Center | ||
labels: | ||
- enhancement | ||
assignees: | ||
- d-loose | ||
- sminez | ||
- matthew-hagemann | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: | | ||
Please search to see if an issue already exists for this feature: https://github.com/canonical/app-center/issues?q=label%3Aenhancement. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Is the feature related to a problem or existing issue? | ||
description: | | ||
If so, please describe the problem or reference/link the issue number. If not, leave this empty. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Describe the solution/feature you'd like. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe any alternatives you've considered. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: | | ||
Provide any additional context that may be relevant to the feature request. | ||
validations: | ||
required: false | ||
|