-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
580ccb6
commit a8b9c28
Showing
4 changed files
with
136 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,13 @@ | ||
# This file defines the code owners of the repository | ||
|
||
# Code owners are automatically requested for review when someone opens a PR that modifies code that they own | ||
|
||
# Each line is a file pattern followed by one or more owners. Learn more here: | ||
|
||
# https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/about-code-owners | ||
|
||
# These owners will be the default owners for everything in | ||
|
||
# the repo. Unless a later match takes precedence, | ||
|
||
- @ipapandinas @Victor-Salomon |
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,65 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
title: Bug report | ||
labels: ['bug (-﹏-。)'] | ||
body: | ||
- type: textarea | ||
id: bug_report_description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: bug_report_reproduce | ||
attributes: | ||
label: To reproduce | ||
description: Steps to reproduce the behavior | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '...' | ||
3. Scroll down to '...' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: bug_report_expected_behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: bug_report_screenshots | ||
attributes: | ||
label: Screenshots | ||
description: | | ||
If applicable, add screenshots to help explain your problem | ||
Tip: You can attach images by clicking this area to highlight it and then dragging files in. | ||
- type: textarea | ||
id: bug_report_desktop | ||
attributes: | ||
label: Desktop (please complete the following information) | ||
placeholder: | | ||
- OS: [e.g. iOS] | ||
- Browser: [e.g. chrome, safari] | ||
- Version: [e.g. 22] | ||
- type: textarea | ||
id: bug_report_smartphone | ||
attributes: | ||
label: Smartphone (please complete the following information) | ||
placeholder: | | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser: [e.g. stock browser, safari] | ||
- Version: [e.g. 22] | ||
- type: textarea | ||
id: bug_report_additional_context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Want to contribute?** | ||
We love contributions from the Ternoa community! Please comment on an issue if you're interested in helping out with a PR. |
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,38 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
title: Feature request | ||
labels: ['enhancement ─=≡Σ((( つ◕ل͜◕)つ'] | ||
body: | ||
- type: textarea | ||
id: feature_request_description | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe. | ||
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feature_request_solution_description | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: A clear and concise description of what you want to happen | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feature_request_alternatives | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feature_request_additional_context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Want to contribute?** | ||
- type: markdown | ||
attributes: | ||
value: We love contributions from the Ternoa community! Please comment on an issue if you're interested in helping out with a PR. |
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,20 @@ | ||
<!--- Provide a general summary of your changes in the Title above --> | ||
|
||
## Description | ||
|
||
<!--- Describe your changes in detail --> | ||
|
||
## Related Issue | ||
|
||
<!--- This project accepts pull requests related to open issues --> | ||
<!--- If suggesting a new feature or change, please discuss it in an issue first --> | ||
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce --> | ||
<!--- Please link to the issue here: --> | ||
|
||
## Types of changes | ||
|
||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to change) |