-
Notifications
You must be signed in to change notification settings - Fork 50
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 #283 from 0xPolygonHermez/feature/github-features
add issues templates & CODEOWNERS
- Loading branch information
Showing
4 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,14 @@ | ||
# global owner | ||
* @krlosMata @laisolizq @invocamanman @ignasirv | ||
|
||
# ecrecover owner | ||
/main/ecrecover @zkronos73 @krlosMata | ||
|
||
# counters folder owner | ||
/counters/ @ignasirv @krlosMata | ||
|
||
# tests owner | ||
/test/ @laisolizq @krlosMata | ||
|
||
# tools owner | ||
/tools/ @laisolizq @krlosMata |
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: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
assignees: [krlosMata, laisolizq, invocamanman, ignasirv] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Fill in all necessary information to report a bug | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version are you using ? | ||
placeholder: 'ex: v1.0.0' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Explain the bug found and the expected result | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: Please share detailed information about ho to reproduce the bug | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log | ||
description: Please copy and paste any relevant log output | ||
render: shell |
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,26 @@ | ||
name: Feature Request | ||
description: File a bug report | ||
title: "[Feature]: " | ||
labels: ["feature"] | ||
assignees: | ||
- krlosMata | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Fill in all necessary information to request a feature | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version the features should be added ? | ||
placeholder: 'ex: v1.0.0' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Explain the feature | ||
validations: | ||
required: true |
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,26 @@ | ||
name: Question | ||
description: Submit a question | ||
title: "[Question]: " | ||
labels: ["question"] | ||
assignees: | ||
- krlosMata | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Fill in all necessary information to submit a question | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version the question is refering to ? | ||
placeholder: 'ex: v1.0.0' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: question | ||
attributes: | ||
label: Description | ||
description: Explain the question | ||
validations: | ||
required: true |