From 09110b0b7f81f3d768ea47e00ddce21b60f10707 Mon Sep 17 00:00:00 2001 From: Pablo Date: Mon, 7 Dec 2020 13:00:49 +0100 Subject: [PATCH] added templates and codeowners --- .github/ISSUE_TEMPLATE/bug_report.md | 42 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 26 ++++++++++++++ .github/workflows/CODEOWNERS | 7 ++++ 3 files changed, 75 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/workflows/CODEOWNERS diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..a765d82 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,42 @@ +--- +name: Bug report +about: Create a report to help us improve +title: +labels: +assignees: +--- + + + + +**Describe the bug** + + + +**To Reproduce** + + + +**Expected behavior** + + + +**Screenshots** + + + +**DAppNode version:** + + + +- Package version: +- OS: +- Browser + +**Additional context** + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..11bbebf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,26 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "" +labels: "" +assignees: "" +--- + + + + +**Is your feature request related to a problem? Please describe.** + + + +**Describe the solution you'd like** + + + +**Describe alternatives you've considered** + + + +**Additional context** + + diff --git a/.github/workflows/CODEOWNERS b/.github/workflows/CODEOWNERS new file mode 100644 index 0000000..3d8973b --- /dev/null +++ b/.github/workflows/CODEOWNERS @@ -0,0 +1,7 @@ +# These owners will be the default owners for everything in the repo. Unless a later match takes precedence, +# They will be requested for review when someone opens a pull request. +* @dapplion @eduadiez @pablomendezroyo + +# Order is important; the last matching pattern takes the most precedence. When someone opens a pull request that only +# modifies md files, only md owners and not the global owner(s) will be requested for a review. +*.md @Pol-Lanski @dapplion @eduadiez @pablomendezroyo \ No newline at end of file