-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add templates for issues report
- Loading branch information
Showing
3 changed files
with
72 additions
and
0 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,47 @@ | ||
name: Bug Report | ||
description: Please report issues related to Grid Helpers add-on here. | ||
body: | ||
- type: textarea | ||
id: problem-description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear description of the issue you're experiencing. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of the expected behavior. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: minimal-reproduction | ||
attributes: | ||
label: Minimal reproducible example | ||
description: If possible, add a concise code snippet that reproduces the issue and describe the steps needed to follow to reproduce it. | ||
validations: | ||
required: false | ||
- type: input | ||
id: addon-version | ||
attributes: | ||
label: Add-on Version | ||
description: The version of the add-on on which you're experiencing the issue. | ||
validations: | ||
required: true | ||
- type: input | ||
id: vaadin-version | ||
attributes: | ||
label: Vaadin Version | ||
description: The complete Vaadin version (X.Y.Z) on which the issue is reproducible. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-information | ||
attributes: | ||
label: Additional information | ||
description: "Any other context/information about the issue can be added here (browser, OS, etc.)." | ||
validations: | ||
required: false | ||
|
||
|
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 @@ | ||
blank_issues_enabled: false |
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,24 @@ | ||
name: Feature Request | ||
description: Please add feature suggestions related to Grid Helpers add-on here. | ||
body: | ||
- type: textarea | ||
id: feature-proposal | ||
attributes: | ||
label: Feature proposal | ||
description: A concise but detailed description of the feature that you would like to see in the add-on. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feature-implementation | ||
attributes: | ||
label: Describe solution expectations | ||
description: Do you have an idea/expectations of how it could be implemented? Did you try a possible solution that you want to share? | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-information | ||
attributes: | ||
label: Additional information | ||
description: Add any extra information you think it might be relevant to the request. | ||
validations: | ||
required: false |