-
Notifications
You must be signed in to change notification settings - Fork 61
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
44 additions
and
26 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,44 @@ | ||
name: 🐞 Bug / Problema na IDE | ||
description: Reportar problemas encontrados na interface ou na execução de código | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## 🐞 Reportar um problema na IDE | ||
Agradecemos por dedicar um tempo para reportar um problema na IDE. Para nos ajudar a entender e corrigir o problema, por favor, preencha o formulário abaixo com o máximo de detalhes possível. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Descrição do problema | ||
description: Explique brevemente o problema encontrado. | ||
placeholder: | | ||
Exemplo: Ao tentar executar o código, a IDE exibe um erro de sintaxe ao usar a função "escreva". | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: code | ||
attributes: | ||
label: Código | ||
description: Por favor, cole abaixo o código que está causando o problema. | ||
render: portugol | ||
placeholder: | | ||
programa { | ||
funcao inicio() { | ||
// Seu código aqui | ||
} | ||
} | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: comments | ||
attributes: | ||
label: Comentários adicionais | ||
description: | | ||
Informações adicionais que possam ajudar a entender o problema. Exemplos: passos para reproduzir o erro, mensagens de erro, etc. | ||
Dica: Você pode anexar imagens ou arquivos de log clicando nesta área para destacá-la e, em seguida, arrastando os arquivos para cá. | ||
validations: | ||
required: false |