From d9773f107e7bffe5f17f12d24b8755f6bc45a7ab Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 10 Sep 2025 15:38:19 +0100 Subject: [PATCH] Added feature request form Signed-off-by: snipe --- .github/ISSUE_TEMPLATE/Bug-Report.yml | 18 +++++------ .github/ISSUE_TEMPLATE/Feature-Request.yml | 35 ++++++++++++++++++++++ 2 files changed, 43 insertions(+), 10 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/Feature-Request.yml diff --git a/.github/ISSUE_TEMPLATE/Bug-Report.yml b/.github/ISSUE_TEMPLATE/Bug-Report.yml index df699cb19f..f4b7ee8515 100644 --- a/.github/ISSUE_TEMPLATE/Bug-Report.yml +++ b/.github/ISSUE_TEMPLATE/Bug-Report.yml @@ -41,8 +41,6 @@ body: - install.sh - Hosted by Grokability - Other - validations: - required: true - type: textarea id: what-happened attributes: @@ -81,14 +79,14 @@ body: label: Common Issues description: Please make sure you have done the following before submitting your issue. options: - - label: I have searched this repo for existing issues related to my issue (including closed issues) - required: true - - label: My APP_URL is set correctly in my .env file (including http or https and no trailing slash) - required: true - - label: I have searched the official Snipe-IT documentation and have checked the Common Issues documentation (where applicable) - required: true - - label: I have run database migrations (where applicable). - required: true + - label: I have searched this repo for existing issues related to my issue (including closed issues) + required: true + - label: My APP_URL is set correctly in my .env file (including http or https and no trailing slash) + required: true + - label: I have searched the official Snipe-IT documentation and have checked the Common Issues documentation (where applicable) + required: true + - label: I have run database migrations (where applicable). + required: true - type: checkboxes id: terms attributes: diff --git a/.github/ISSUE_TEMPLATE/Feature-Request.yml b/.github/ISSUE_TEMPLATE/Feature-Request.yml new file mode 100644 index 0000000000..18da2e0f94 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature-Request.yml @@ -0,0 +1,35 @@ +name: Feature Request +description: Request a new feature. +title: "[Feature]: " +projects: ["grokability/snipe-it"] +type: feature +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! Please make sure to search the existing issues in this repository to see if your feature has already been requested. + - type: input + id: version + attributes: + label: Snipe-IT Version + description: What version of Snipe-IT are you seeing this issue on? You can find the version number in the footer of any page in Snipe-IT. + placeholder: ex. v8.3.1 - build 19577 (master) + validations: + required: true + - type: textarea + id: feature-description + attributes: + label: How can we help? + description: Let us know in detail what feature you'd like to see added. While we can't promise to implement every feature request, we do read every one and take them into consideration when planning future releases. + placeholder: Tell us what you want! + value: "Something really cool" + validations: + required: true + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/grokability/snipe-it/blob/master/CODE_OF_CONDUCT.md). + options: + - label: I agree to follow this project's Code of Conduct + required: true \ No newline at end of file