From dc4bfa7272dec213ec82a4034ec67209a5b7e3b4 Mon Sep 17 00:00:00 2001 From: Fernando Fernandez Mancera Date: Sun, 25 Oct 2020 01:01:58 +0200 Subject: [PATCH] github: add stale workflow To ensure that old/untouched pull requests do not pile up, configure the probot stale bot to mark pull requests without activity in the last 30 days as stale and close them after 14 more days if there is no further activity. The pull requests are marked with the stale label. Signed-off-by: Fernando Fernandez Mancera --- .github/stale.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000..bfb82b2 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,12 @@ +--- +# Configuration for probot-stale - https://github.com/probot/stale +daysUntilStale: 30 +daysUntilClose: 14 +staleLabel: stale +markComment: > + Thank you for your contribution! There was no activity in this pull request + recently. To avoid pull requests to pile up, an automated process marked this + pull request as stale. It will close this pull request if no further activity + occurs. The current policy is available at: + https://github.com//linux-system-roles/network/blob/main/.github/stale.yml +only: pulls