-
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.
- Loading branch information
Showing
2 changed files
with
100 additions
and
3 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,98 @@ | ||
name: 🔄 Update game | ||
description: Update a existing game fields into the database | ||
title: '[UPDATE_GAME]' | ||
labels: | ||
- database | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please fill in the following fields to update this game into database ! | ||
- type: dropdown | ||
id: identifierKind | ||
attributes: | ||
label: Kind of content | ||
description: Is it a playlist or a video ? | ||
options: | ||
- Playlist (Default) | ||
- Video | ||
default: 0 | ||
- type: input | ||
id: identifierValue | ||
attributes: | ||
label: Identifier | ||
description: What is the game playlist ID or video ID on Youtube ? | ||
placeholder: >- | ||
ex. PLRfhDHeBTBJ56jE5Kb3Wb6vBZZKLgM0dR or dn6QTMujBiY | ||
- type: input | ||
id: title | ||
attributes: | ||
label: Name of the game | ||
description: What is the game name in the language it was played ? | ||
placeholder: ex. Splinter Cell HD | ||
- type: input | ||
id: releaseDate | ||
attributes: | ||
label: Release Date | ||
description: When was this game published ? | ||
placeholder: YYYY-MM-DD | ||
- type: dropdown | ||
id: platform | ||
attributes: | ||
label: Platform | ||
description: On which platform was the content on ? | ||
options: | ||
- PC (Default) | ||
- GBA | ||
- PSP | ||
- PS1 | ||
- PS2 | ||
- PS3 | ||
- type: dropdown | ||
id: genres | ||
attributes: | ||
label: Categories | ||
description: 'What are the game genres (Action, Adventure, ...) ?' | ||
multiple: true | ||
options: | ||
- Action | ||
- Adventure | ||
- Arcade | ||
- Board Games | ||
- Card | ||
- Casual | ||
- Educational | ||
- Family | ||
- Fighting | ||
- Indie | ||
- MMORPG | ||
- Platformer | ||
- Puzzle | ||
- RPG | ||
- Racing | ||
- Shooter | ||
- Simulation | ||
- Sports | ||
- Strategy | ||
- Misc | ||
- type: input | ||
id: duration | ||
attributes: | ||
label: Duration of the game | ||
description: >- | ||
How long is that game ? Express it with ISO 8601 time notation | ||
(HH:MM:SS) | ||
placeholder: '02:23:15' | ||
value: '00:00:00' | ||
- type: input | ||
id: availableAt | ||
attributes: | ||
label: Start Date | ||
description: When will this game be released on channel ? | ||
placeholder: YYYY-MM-DD | ||
- type: input | ||
id: endAt | ||
attributes: | ||
label: End Date | ||
description: When will this game be finished on channel ? | ||
placeholder: YYYY-MM-DD |