From bdbd4e95ba5c5146bc6e0d971a47a15ba195fc55 Mon Sep 17 00:00:00 2001 From: Randolf J Date: Thu, 23 Jun 2022 09:47:03 +0200 Subject: [PATCH] chore: add stale bot --- .github/stale.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000000..0b63b1020b042 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,20 @@ +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: > + We are closing this issue. If the issue still persists in the latest version of + Puppeteer, please reopen the issue and update the description. We will try our + best to accomodate it! +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 90 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - confirmed +# Comment to post when marking an issue as stale. +markComment: > + We're marking this issue as unconfirmed because it has not had recent activity and + we weren't able to confirm it yet. It will be closed if no further activity occurs. +# Only mark issues. +only: issues +# Label to use when marking an issue as stale +staleLabel: unconfirmed