From 3a741936c54708f7a1023e34354d0a402d6cf8db Mon Sep 17 00:00:00 2001 From: Anthony Lavado Date: Fri, 1 Nov 2019 16:06:00 -0400 Subject: Add an exemption for the confirmed label Adds an exemption we can use to keep issues open when they are confirmed/real --- .github/stale.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github') diff --git a/.github/stale.yml b/.github/stale.yml index 9ea0e3796..6b90978cc 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -11,6 +11,7 @@ exemptLabels: - future - feature - enhancement + - confirmed # Label to use when marking an issue as stale staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable -- cgit v1.2.3 From 6c7b59213162c1da1d44b6f9c9d34e07139cd52c Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Sun, 17 Nov 2019 12:18:58 -0500 Subject: Update stalebot timings and message 1. Bump up the timings, since the project releases have slowed down a fair bit. 120 days stale with 21 days for a response still gets us the desired effect while loosening the timeline for issue submitters. 2. Revamp the wording to better explain what the author (or others) need to do, and why this bot exists. --- .github/stale.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to '.github') diff --git a/.github/stale.yml b/.github/stale.yml index 6b90978cc..05892c44d 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -1,7 +1,7 @@ # Number of days of inactivity before an issue becomes stale -daysUntilStale: 90 +daysUntilStale: 120 # Number of days of inactivity before a stale issue is closed -daysUntilClose: 14 +daysUntilClose: 21 # Issues with these labels will never be considered stale exemptLabels: - regression @@ -16,8 +16,10 @@ exemptLabels: staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > - Issues go stale after 90d of inactivity. Mark the issue as fresh by adding a comment or commit. Stale issues close after an additional 14d of inactivity. - If this issue is safe to close now please do so. - If you have any questions you can reach us on [Matrix or Social Media](https://docs.jellyfin.org/general/getting-help.html). + This issue has gone 120 days without comment. To avoid abandoned issues, it will be closed in 21 days if there are no new comments. + + If you're the original submitter of this issue, please comment confirming if this issue still affects you in the latest release or nightlies, or close the issue if it has been fixed. If you're another user also affected by this bug, please comment confirming so. Either action will remove the stale label. + + This bot exists to prevent issues from becoming stale and forgotten. Jellyfin is always moving forward, and bugs are often fixed as side effects of other changes. We therefore ask that bug report authors remain vigilant about their issues to ensure they are closed if fixed, or re-confirmed - perhaps with fresh logs or reproduction examples - regularly. If you have any questions you can reach us on [Matrix or Social Media](https://docs.jellyfin.org/general/getting-help.html). # Comment to post when closing a stale issue. Set to `false` to disable closeComment: false -- cgit v1.2.3 From 8718e1ea6b76386e4b5032da0a770cec1b7acf42 Mon Sep 17 00:00:00 2001 From: Bond-009 Date: Thu, 5 Dec 2019 18:30:56 +0100 Subject: Add installed plugins to bug reports --- .github/ISSUE_TEMPLATE/bug_report.md | 1 + 1 file changed, 1 insertion(+) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index ca89c1cb9..bd13d4b00 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -30,6 +30,7 @@ assignees: '' - OS: [e.g. Docker, Debian, Windows] - Browser: [e.g. Firefox, Chrome, Safari] - Jellyfin Version: [e.g. 10.0.1] + - Installed Plugins: [e.g. none, Fanart, Anime, etc.] - Reverse proxy: [e.g. no, nginx, apache, etc.] **Additional context** -- cgit v1.2.3