From 1aaf7f5acf7e2070bb3e0347d044070816e4fd91 Mon Sep 17 00:00:00 2001 From: Pedro Pombeiro Date: Fri, 10 May 2019 17:07:54 +0200 Subject: [PATCH] Move to use Stale Probot instead of status-github-bot Signed-off-by: Pedro Pombeiro --- .github/github-bot.yml | 16 ---------------- .github/stale.yml | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 .github/stale.yml diff --git a/.github/github-bot.yml b/.github/github-bot.yml index 8df230e2d8..bbc06ee0a4 100644 --- a/.github/github-bot.yml +++ b/.github/github-bot.yml @@ -19,19 +19,3 @@ prchecklist: title: Pull Request Checklist checklist: - 'Have you updated the documentation, if impacted (e.g. [docs.status.im](https://docs.status.im/docs/build_status.html))?' - -stale: - daysUntilStale: 90 - daysUntilPullRequestStale: 14 - daysUntilClose: 7 - exemptLabels: - - 'wall of shame' - - security - staleLabel: stale - 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. - closeComment: > - This issue has been automatically closed. Please re-open if this issue - is important to you. diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000..4ebcca875a --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,16 @@ +daysUntilStale: 90 +daysUntilClose: 7 +exemptLabels: + - 'wall of shame' + - security +staleLabel: stale +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. +closeComment: > + This issue has been automatically closed. Please re-open if this issue + is important to you. + +pulls: + daysUntilStale: 14