From 5098643b779c04f63480c2b655117f1b929d9a6e Mon Sep 17 00:00:00 2001 From: David Wakelin Date: Thu, 5 Aug 2021 09:38:23 +0100 Subject: [PATCH] Added issues templates --- .github/ISSUE_TEMPLATE/BUG.yml | 46 ++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/FEATURE.yml | 14 +++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .gitignore | 2 ++ 4 files changed, 63 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG.yml create mode 100644 .github/ISSUE_TEMPLATE/FEATURE.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 0000000..5454ccc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG.yml @@ -0,0 +1,46 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: [ bug, triage ] +assignees: + - MacroMan +body: + - type: markdown + attributes: + value: | + Please provide all information required to reproduce the bug + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: dropdown + id: version + attributes: + label: Version + description: What version of Spaces-API are you running? + options: + - 2.0.1 + - 2.0.0 + validations: + required: true + - type: dropdown + id: php + attributes: + label: What version of PHP are you using/seeing the bug on? + description: We do not accept bug reports for PHP versions less than 7.3 + multiple: true + options: + - '8.0' + - '7.4' + - '7.3', + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell diff --git a/.github/ISSUE_TEMPLATE/FEATURE.yml b/.github/ISSUE_TEMPLATE/FEATURE.yml new file mode 100644 index 0000000..eb2e994 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE.yml @@ -0,0 +1,14 @@ +name: Feature Request +description: Request a new feature +title: "[Feature]: " +labels: [ new ] +assignees: + - MacroMan +body: + - type: textarea + id: new-feature + attributes: + label: Description + description: Please detail what you would like to see in Spaces-API. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..3ba13e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.gitignore b/.gitignore index e43b0f9..4284e94 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .DS_Store +vendor/ +.idea/