From 33db64e2774906a06c7b910b10831adf55cbd287 Mon Sep 17 00:00:00 2001 From: Ry Jones Date: Sun, 30 Dec 2018 01:51:46 -0800 Subject: [PATCH] Configure Stale ProBot Use GitHub's process to automatically comment and close PRs, with a pointer to the contributing guide. Change-Id: Iea3d1391a4175c98f2d5eeb9a8047d09286d46b7 Signed-off-by: Ry Jones --- .github/stale.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000..e5c3f77a4b --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,27 @@ +# SPDX-License-Identifier: Apache-2.0 +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 0 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 1 +# Issues with these labels will never be considered stale +# CAUTION: These issues are likely to get _less_ attention since stale bot +# will never nag anyone about them. Stale bot just reflects the community's +# actual priorities and adding labels to this list will not change that. +# If issues you care about are going stale, you need to work with the +# community to raise their profile, e.g. add more information, reach out on +# Rocket.Chat, join a community call, etc. +# WARNING: Please do not change these labels without seeking community +# consensus first! +# Label to use when marking an issue as stale +staleLabel: stale +only: pulls +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + Thank you for your contribution! + Please use gerrit for the changes, see + [documentation here](https://hyperledger-fabric.readthedocs.io/en/latest/CONTRIBUTING.html) +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: > + Thank you for your contribution! + Please use gerrit for the changes, see + [documentation here](https://hyperledger-fabric.readthedocs.io/en/latest/CONTRIBUTING.html)