forked from ublue-os/main
-
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: add package request template (#3)
- Loading branch information
Showing
1 changed file
with
33 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,33 @@ | ||
name: Request a Package | ||
description: Request an RPM package to be included in the base image | ||
labels: [package-request] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking the time to fill out this request! | ||
- type: textarea | ||
id: describe-bug | ||
attributes: | ||
label: Describe the package | ||
description: Include why you feel this should be on the image | ||
placeholder: Tell us what you need | ||
value: "I'd like to request the package `vim` on the main image" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: image | ||
attributes: | ||
label: Image | ||
description: Which specific image do you want? | ||
options: | ||
- Bazzite | ||
- Kinoite | ||
- LXQt | ||
- Mate | ||
- Silverblue | ||
- Ubuntu | ||
- Vauxite | ||
validations: | ||
required: true |