From c5816f3174bc039d64ff3050c630783c3e7f47db Mon Sep 17 00:00:00 2001 From: krlosMata Date: Tue, 4 Apr 2023 12:39:11 +0200 Subject: [PATCH] add default issues template nad CODEOWNERS file --- .github/CODEOWNERS | 5 ++++ .github/ISSUE_TEMPLATE/bug.yml | 39 +++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature.yml | 26 +++++++++++++++++++ .github/ISSUE_TEMPLATE/question.yml | 26 +++++++++++++++++++ 4 files changed, 96 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/feature.yml create mode 100644 .github/ISSUE_TEMPLATE/question.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..a973df08 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +# global owner +* @krlosMata + +# src owners +/src/ @krlosMata @laisolizq @invocamanman @ignasirv diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..285626c3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -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 \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000..e1d4c0f9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -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 \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml new file mode 100644 index 00000000..406c3703 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -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 \ No newline at end of file