From b87a42f06b31f6810a1b4245cdbe05716912b0e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Fri, 3 Sep 2021 00:16:36 +0300 Subject: [PATCH] added github issue templates --- .github/ISSUE_TEMPLATE/bug.yml | 63 +++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 11 ++++++ 2 files changed, 74 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 000000000..c58a94594 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,63 @@ +name: Bug report +description: File a bug report related to Akaunting +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: input + id: akaunting + attributes: + label: Akaunting version + description: "Please provide the full Akaunting version of your installation." + placeholder: "2.1.20" + validations: + required: true + - type: input + id: php + attributes: + label: PHP version + description: "Please provide the full PHP version that is powering Akaunting." + placeholder: "7.4.10" + validations: + required: true + - type: input + id: os + attributes: + label: Operating system + description: "Which operating system do you use? Please provide the version as well." + placeholder: "Ubuntu 20.04" + validations: + required: true + - type: textarea + id: steps + attributes: + label: Steps to reproduce + description: Which steps do we need to take to reproduce this error? + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected result + description: What is the expected result? + validations: + required: true + - type: textarea + id: actual + attributes: + label: Actual result + description: What is the actual result? + validations: + required: true + - type: textarea + id: comments + attributes: + label: Additional comments + description: Anything else we should know about? + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Copy and paste any relevant log output. No need for backticks. + render: shell diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..3cb53d44c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +blank_issues_enabled: false +contact_links: + - name: Feature request + url: https://akaunting.com/forum + about: 'For ideas or feature requests, start a new discussion' + - name: Support, help, and other + url: https://akaunting.com/support + about: 'This repository is only for reporting bugs' + - name: Documentation + url: https://github.com/akaunting/docs + about: For documentation improvements, open a pull request at the akaunting/docs repository