From 6d85118565bcd3f25623b6c6c19ed88f6dff90eb Mon Sep 17 00:00:00 2001 From: MasterLaplace Date: Mon, 9 Dec 2024 22:50:58 -0500 Subject: [PATCH] feat: add a game request template to facilitate contributions for new games or updates --- .github/ISSUE_TEMPLATE/game_request.yml | 57 +++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/game_request.yml diff --git a/.github/ISSUE_TEMPLATE/game_request.yml b/.github/ISSUE_TEMPLATE/game_request.yml new file mode 100644 index 00000000..c5566f59 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/game_request.yml @@ -0,0 +1,57 @@ +name: I want to request a game +description: Game request, for new games or updates of existing games. +Before submitting a game request, please make sure that the game you are requesting is not already in the repository. +Also, be aware that the game you are requesting must be open-source and must comply with the Code Of Conduct. + +The game request will be reviewed by the maintainers and, if approved, it will be added to the repository as +a gameName-version.json or as a classic folder in the Games folder. + +The main objective to add games to the repository is to provide a way to install and play games in a simple way, +without the need to download and install the game manually. Also, it provides a way to keep the games updated automatically. +title: '[Game]: ' +labels: + - game +assignees: + - {{ github.actor }} + - MasterLaplace +body: + - type: input + id: gameTitle + attributes: + label: What is your game title? + validations: + required: true + - type: input + id: gameVersion + attributes: + label: What is your game version? + validations: + required: true + - type: checkboxes + attributes: + label: Is it an update? + options: + - label: Yes (Please provide the previous version) + - label: No + - type: input + id: gamePreviousVersion + attributes: + label: What is the previous version? + - type: input + id: gameAuthor + attributes: + label: Who is the author/editor of the game? + validations: + required: true + - type: textarea + id: gameDescription + attributes: + label: Please describe your game in a few words + validations: + required: true + - type: checkboxes + attributes: + label: I read the Code Of Conduct + options: + - label: I read the Code Of Conduct and I comply to it + required: true