1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

.github: clean issue templates (#16566)

This commit is contained in:
RGBCube
2022-12-01 19:29:59 +03:00
committed by GitHub
parent 6e24f7e13a
commit 18d98a5e16
4 changed files with 39 additions and 36 deletions

View File

@@ -1,11 +1,8 @@
--- name: 🐛 Bug Report
name: "🐛 Bug Report"
description: Report a bug description: Report a bug
title: "(short issue description)" title: (bug report summary)
labels: "Bug" labels: Bug
assignees: []
body: body:
- type: textarea - type: textarea
id: description id: description
attributes: attributes:
@@ -13,14 +10,15 @@ body:
description: What is the problem? A clear and concise description of the bug. description: What is the problem? A clear and concise description of the bug.
validations: validations:
required: true required: true
- type: textarea - type: textarea
id: expected id: expected
attributes: attributes:
label: Expected Behavior label: Expected Behavior
description: | description: What did you expect to happen?
What did you expect to happen?
validations: validations:
required: true required: true
- type: textarea - type: textarea
id: current id: current
attributes: attributes:
@@ -32,6 +30,7 @@ body:
If service/functions responses are relevant, please include wire logs. If service/functions responses are relevant, please include wire logs.
validations: validations:
required: true required: true
- type: textarea - type: textarea
id: reproduction id: reproduction
attributes: attributes:
@@ -41,39 +40,43 @@ body:
For more complex issues provide a repo with the smallest sample that reproduces the bug. For more complex issues provide a repo with the smallest sample that reproduces the bug.
Avoid including business logic or unrelated code, it makes diagnosis more difficult. Avoid including business logic or unrelated code, it makes diagnosis more difficult.
The code sample should be an SSCCE. See http://sscce.org/ for details. In short, please provide a code sample that we can copy/paste, run and reproduce. The code sample should be an SSCCE. See http://sscce.org/ for details.
In short, please provide a code sample that we can copy/paste, run and reproduce.
validations: validations:
required: true required: true
- type: textarea - type: textarea
id: solution id: solution
attributes: attributes:
label: Possible Solution label: Possible Solution
description: | description: Suggest a fix/reason for the bug
Suggest a fix/reason for the bug
validations: validations:
required: false required: false
- type: textarea - type: textarea
id: context id: context
attributes: attributes:
label: Additional Information/Context label: Additional Information/Context
description: | description: |
Anything else that might be relevant for troubleshooting this bug. Providing context helps us come up with a solution that is most useful in the real world. Anything else that might be relevant for troubleshooting this bug.
Providing context helps us come up with a solution that is most useful in the real world.
validations: validations:
required: false required: false
- type: input - type: input
id: version id: version
attributes: attributes:
label: V version label: V version
description: | description: |
Please make sure to run `v up` before reporting any issues as it may have already been fixed. Please make sure to run `v up` before reporting any issues as it may have already been fixed.
It's also advisable to update all relevant modules using `v outdated` and `v install It's also advisable to update all relevant modules using `v outdated` and `v install`.
validations: validations:
required: true required: true
- type: input - type: input
id: environment id: environment
attributes: attributes:
label: Environment details (OS name and version, etc.) label: Environment details (OS name and version, etc.)
description: | description: You can use `v doctor` to fill up this section.
You can use `v doctor` to fill up this section.
validations: validations:
required: true required: true

View File

@@ -1,9 +1,9 @@
---
blank_issues_enabled: false blank_issues_enabled: false
contact_links: contact_links:
- name: 💬 General Questions and Answers about V - name: 💬 General Questions and Answers about V
url: https://github.com/vlang/v/discussions/categories/questions-and-answers url: https://github.com/vlang/v/discussions/categories/questions-and-answers
about: Please ask and answer questions as a discussion thread about: You can ask and answer questions about V in the discussions forum.
- name: 💬 Discord Server - name: 💬 Discord Server
url: https://discord.gg/vlang url: https://discord.gg/vlang
about: You can join our Discord server for real time discussion and support about: You can join our Discord server for real time discussion and support

View File

@@ -1,8 +1,7 @@
name: "📕 Documentation Issue" name: 📕 Documentation Issue
description: Report an issue in the Reference documentation or Developer Guide description: Report an issue in the Reference documentation or Developer Guide
title: "(short issue description)" title: (short issue description)
labels: "Unit: Documentation" labels: "Unit: Documentation"
assignees: []
body: body:
- type: textarea - type: textarea
id: description id: description
@@ -16,7 +15,6 @@ body:
id: links id: links
attributes: attributes:
label: Links label: Links
description: | description: Include links to affected documentation page(s).
Include links to affected documentation page(s).
validations: validations:
required: true required: true

View File

@@ -1,9 +1,7 @@
---
name: 🚀 Feature Request name: 🚀 Feature Request
description: Suggest an idea for this project description: Suggest an idea for this project
title: "(short issue description)" title: (feature request summary)
labels: [feature-request] labels: Feature Request
assignees: []
body: body:
- type: textarea - type: textarea
id: description id: description
@@ -12,6 +10,7 @@ body:
description: A clear and concise description of the feature you are proposing. description: A clear and concise description of the feature you are proposing.
validations: validations:
required: true required: true
- type: textarea - type: textarea
id: use-case id: use-case
attributes: attributes:
@@ -19,23 +18,24 @@ body:
description: | description: |
Why do you need this feature? For example: "I'm always frustrated when..." Why do you need this feature? For example: "I'm always frustrated when..."
validations: validations:
required: true required: true
- type: textarea - type: textarea
id: solution id: solution
attributes: attributes:
label: Proposed Solution label: Proposed Solution
description: | description: Suggest how to implement the addition or change. Please include prototype/workaround/sketch/reference implementation.
Suggest how to implement the addition or change. Please include prototype/workaround/sketch/reference implementation.
validations: validations:
required: false required: false
- type: textarea - type: textarea
id: other id: other
attributes: attributes:
label: Other Information label: Other Information
description: | description: Any alternative solutions or features you considered, a more detailed explanation, stack traces, related issues, links for context, etc.
Any alternative solutions or features you considered, a more detailed explanation, stack traces, related issues, links for context, etc.
validations: validations:
required: false required: false
- type: checkboxes - type: checkboxes
id: ack id: ack
attributes: attributes:
@@ -43,19 +43,21 @@ body:
options: options:
- label: I may be able to implement this feature request - label: I may be able to implement this feature request
required: false required: false
- label: This feature might incur a breaking change - label: This feature might incur a breaking change
required: false required: false
- type: input - type: input
id: version id: version
attributes: attributes:
label: Version used label: Version used
description: | description: Please provide the version of the repository or tool you are using.
Please provide the version of the repository or tool you are using.
validations: validations:
required: true required: true
- type: input - type: input
id: environment id: environment
attributes: attributes:
label: Environment details (OS name and version, etc.) label: Environment details (OS name and version, etc.)
validations: validations:
required: true required: true