-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #937 from AlejandroSuero/feature/update-issue-temp…
…late-to-new-version feat(templates): update issue template to new version
- Loading branch information
Showing
3 changed files
with
117 additions
and
38 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,97 @@ | ||
name: Reportar problema | ||
description: Reporta un problema | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "# Pre-requisitos" | ||
- type: checkboxes | ||
id: pre-requisitos | ||
attributes: | ||
label: Señala los requisitos cumplidos | ||
description: | | ||
Asegúrate de cumplir estos requisitos antes de reportar un problema | ||
options: | ||
- label: Estoy corriendo la última versión. | ||
required: true | ||
- label: | | ||
He revisado si ya hay un issue creado con características similares. | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: "# Comportamiento" | ||
- type: textarea | ||
id: comportamiento-esperado | ||
attributes: | ||
label: Comportamiento esperado | ||
description: Describe el comportamiento esperado de la issue | ||
placeholder: Esta feature debería hacer ... | ||
- type: textarea | ||
id: comportamiento-actual | ||
attributes: | ||
label: Comportamiento actual | ||
description: Describe el comportamiento actual de la issue | ||
placeholder: Esta feature hace ... | ||
- type: markdown | ||
attributes: | ||
value: "# Información" | ||
- type: textarea | ||
id: informacion-bug | ||
attributes: | ||
label: Información del bug | ||
description: Aporta información sobre el bug | ||
placeholder: Este bug ocurre cuando ... | ||
- type: textarea | ||
id: pasos-reproducir | ||
attributes: | ||
label: Pasos para reproducirlo | ||
description: Pasos necesarios para reproducir el bug | ||
placeholder: | | ||
1. Paso1 | ||
2. Paso2 | ||
- type: markdown | ||
attributes: | ||
value: "# Contexto" | ||
- type: dropdown | ||
id: navegadores | ||
attributes: | ||
label: ¿En qué navegadores encuentras el problema? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- Opera | ||
- Todos los navegadores | ||
- type: input | ||
id: version-navegador | ||
attributes: | ||
label: Versión del navegador | ||
description: Versión del navegador en el cuál encuentras el problema | ||
placeholder: Chrome v124.0.6367.92 ... | ||
- type: dropdown | ||
id: sistema-operativo | ||
attributes: | ||
label: Sistema operativo | ||
description: Sistema operativo en el cuál encuentras el problema | ||
multiple: true | ||
options: | ||
- Windows | ||
- MacOS | ||
- Linux | ||
- Android | ||
- Todos los sistemas | ||
- type: markdown | ||
attributes: | ||
value: "# Información adicional" | ||
- type: textarea | ||
attributes: | ||
label: Añade información adicional si fuese necesario | ||
description: Imágenes, link del código, fragmento de código ... | ||
placeholder: | | ||
```typescript | ||
const variable = "..." | ||
``` | ||
... |
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,20 @@ | ||
name: Propuesta de mejora | ||
description: Sugerir una mejora o feature para el proyecto | ||
title: "[Feat]: " | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "## Pre-requisitos" | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Antes de sugerir una feature, busca [features existentes](https://github.com/midudev/la-velada-web-oficial/issues) | ||
- type: textarea | ||
attributes: | ||
label: Descripción | ||
description: Descripción de la feature que quieres que se añada | ||
placeholder: | | ||
Estaría bien que el proyecto tuviese ... | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.