Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add default issues template and CODEOWNERS file #95

Merged
merged 1 commit into from
Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# global owner
* @krlosMata

# src owners
/src/ @krlosMata @laisolizq @invocamanman @ignasirv
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug"]
assignees:
- krlosMata
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