Skip to content

Commit

Permalink
Merge pull request #283 from 0xPolygonHermez/feature/github-features
Browse files Browse the repository at this point in the history
add issues templates & CODEOWNERS
  • Loading branch information
invocamanman authored Apr 12, 2023
2 parents 23189df + ca608d2 commit 641613c
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
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
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
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
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
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
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
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

0 comments on commit 641613c

Please sign in to comment.