diff --git a/.github/ISSUE_TEMPLATE/bug-report b/.github/ISSUE_TEMPLATE/bug-report new file mode 100644 index 000000000000..f40a9220abbb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report @@ -0,0 +1,51 @@ +name: Code review +description: "Request a new code review" +body: + - type: checkboxes + id: checks + attributes: + label: First Check + description: Please confirm and check all the following options. + options: + - label: This is not a feature request + required: true + - label: I added a very descriptive title to this issue. + required: true + - label: I used the GitHub search to find a similar issue and didn't find it. + required: true + - label: I searched the Mealie documentation, with the integrated search. + required: true + - label: I already read the docs and didn't find an answer. + required: true + - type: textarea + id: description + attributes: + label: What is the issue you are experiencing? + placeholder: A clear and concise description of what the bug is. + validations: + required: true + - type: dropdown + id: os + attributes: + label: Deployment + description: What Deployment system are you using? + multiple: true + options: + - Docker (Linux) + - Docker (Windows) + - Docker (Synology) + - Unraid + - Other + validations: + required: true + - type: textarea + id: os-details + attributes: + label: Deployment Details + description: You can add more details about your operating system here, in particular if you chose "Other". If you are experiencing issues with deployment, please provide your docker-compose or docker commands + - type: input + id: mealie-version + attributes: + label: Mealie Version + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index dd28c34e9ff2..000000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug Report -about: Create a bug report to help us improve -title: '' -labels: bug -assignees: '' - ---- - -**Describe the bug** - - -**Steps To Reproduce** -Please be specific! -1. Go to '...' -2. Click on '....' -3. etc. - -**Sample Code** - - -**Expected behavior** - - -**Actual Behavior** - - -**Screenshots** - - -**Device Information (please complete the following information):** - - OS: [e.g., WSL2 on Win10, Mac] - - Deployment: [e.g., Docker-version, docker-compose, Python application] - - Browser: [e.g., chrome, safari] - - Version: [e.g., 0.2.0-dev] - -**Additional context** - diff --git a/.github/stale.yaml b/.github/stale.yaml new file mode 100644 index 000000000000..dc90e5a1c3aa --- /dev/null +++ b/.github/stale.yaml @@ -0,0 +1,17 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + - security +# Label to use when marking an issue as stale +staleLabel: wontfix +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false