-
Notifications
You must be signed in to change notification settings - Fork 22
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 #17 from Bal7hazar/config/templates
🔧 Add templates
- Loading branch information
Showing
4 changed files
with
140 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,51 @@ | ||
name: Bug Report | ||
description: Report a bug | ||
title: "[Bug]: " | ||
labels: [ "bug" ] | ||
body: | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Origami Version | ||
description: What Origami version are you using? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: current-behavior | ||
attributes: | ||
label: What happened? | ||
description: Describe the issue here. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: What is the expected behavior? | ||
description: Describe the expected behavior here. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: Describe the steps to reproduce the issue here. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Trace | ||
description: Please provide output of the error. | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: verified-not-exists | ||
attributes: | ||
label: Is there an existing issue for this? | ||
options: | ||
- label: I have searched the existing issues and verified no issue exits for this problem. |
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,19 @@ | ||
name: Codebase improvement | ||
description: Feedback on the codebase | ||
title: "[Enhancement]: " | ||
labels: [ "enhancement" ] | ||
body: | ||
- type: textarea | ||
id: feedback | ||
attributes: | ||
label: Feedback | ||
description: Provide your feedback for the existing codebase. | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: contribution | ||
attributes: | ||
label: If the request is accepted, would you be willing to contribute it? | ||
options: | ||
- label: Yes |
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,51 @@ | ||
name: Feature request | ||
description: Suggest a feature | ||
title: "[Feature]: " | ||
labels: [ "feature" ] | ||
body: | ||
- type: textarea | ||
id: suggestion | ||
attributes: | ||
label: Feature Request | ||
description: Describe the feature(s) you would like to be added. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Proposed Solution | ||
description: Describe a prefered solution. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives | ||
description: Describe alternatives. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: related | ||
attributes: | ||
label: Related Code | ||
description: Link the related code. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: If relevant, please provide the additional context. | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: contribution | ||
attributes: | ||
label: If the feature is accepted, would you be willing to contribute it? | ||
options: | ||
- label: Yes |
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,19 @@ | ||
<!-- Reference any GitHub issues resolved by this PR --> | ||
|
||
Closes # | ||
|
||
## Introduced changes | ||
|
||
<!-- A brief description of the changes --> | ||
|
||
- | ||
|
||
## Checklist | ||
|
||
<!-- Make sure all of these are complete --> | ||
|
||
- [ ] Linked relevant issue | ||
- [ ] Updated relevant documentation | ||
- [ ] Added relevant tests | ||
- [ ] Add a dedicated CI job for new examples | ||
- [ ] Performed self-review of the code |