From cc9f4ab25123690c25ccd4f01b111fb1ea614ff0 Mon Sep 17 00:00:00 2001 From: jtpavlock Date: Sat, 11 Jul 2020 15:59:34 -0500 Subject: [PATCH] Add a stale-bot (#3659) will apply the `stale` label to any issues and pull requests with >60/120 days inactivity respectively --- .github/stale.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..850446d81 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,26 @@ +# Configuration for probot-stale - https://github.com/probot/stale + +daysUntilClose: 7 +staleLabel: stale + +issues: + daysUntilStale: 60 + onlyLabels: + - needinfo + markComment: > + Is this still relevant? If so, what is blocking it? + Is there anything you can do to help move it forward? + + 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. + +pulls: + daysUntilStale: 120 + markComment: > + Is this still relevant? If so, what is blocking it? + Is there anything you can do to help move it forward? + + This pull request 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.