Skip to content

Commit

Permalink
Adding GitHub issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
racz16 committed Nov 24, 2023
1 parent 215e241 commit b934608
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Report a bug
description: Report a bug, for example, the extension crashes, or one of the features doesn't work correctly, etc.
title: '[Bug]: '
labels: ['bug']
assignees:
- racz16
body:
- type: markdown
attributes:
value: While most of the fields are not required, please give me as much information as possible to be able to reproduce the problem.
- type: input
id: extension-version
attributes:
label: The extension's version
description: You can find it in the extensions's page in the **Extensions** tab, next to the extension's name.
placeholder: eg. 1.3.6
- type: input
id: vs-code-version
attributes:
label: VS Code's version
description: You can find it in **Help** / **About**.
placeholder: eg. 1.84.1
- type: dropdown
id: extension-host
attributes:
label: Extension host
description: Choose **Desktop VS Code** if you downloaded VS Code, and choose **Web VS Code**, if you used <https://vscode.dev>, <https://github.dev>, or similar.
options:
- Desktop VS Code
- Web VS Code
- type: input
id: operating-system
attributes:
label: Operating system
description: Please provide the CPU architecture as well, like x64, or ARM64, etc.
placeholder: eg. Windows 11 x64
- type: textarea
id: description
attributes:
label: Description
description: Please provide information, like what have you done when the problem happened, what exactly happened, error messages, logs, pictures, etc.
validations:
required: true
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Request a feature
description: Request a completely new feature or the enhancement of an already existing feature.
title: '[Feature]: '
labels: ['enhancement']
assignees:
- racz16
body:
- type: markdown
attributes:
value: At the moment, the extension is not under regular development. Sometimes there are new releases, but they usually only contain bug fixes and sometimes very small features. If you have a feature request, feel free to create an issue, but I don't promise, that I'll implement it.
- type: textarea
id: feature-details
attributes:
label: Feature details
validations:
required: true
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/other.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Other
description: If you have a question, a suggestion, or anything that is not a bug report and not a feature request.
assignees:
- racz16
body:
- type: textarea
id: content
attributes:
label: Content
validations:
required: true

0 comments on commit b934608

Please sign in to comment.