From a1d182b3690555b784764a59e1268f55b2a083b8 Mon Sep 17 00:00:00 2001 From: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> Date: Thu, 2 Nov 2023 12:03:05 -0700 Subject: [PATCH] Do not automatically close stale issues (#4353) * Do not automatically close stale issues Signed-off-by: Eduardo Apolinario * Rephrase message Signed-off-by: Eduardo Apolinario --------- Signed-off-by: Eduardo Apolinario Co-authored-by: Eduardo Apolinario --- .github/workflows/stale.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 143c9aa152..428d42b5ed 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,11 +12,14 @@ jobs: - uses: actions/stale@v8 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: "Hello 👋, This issue has been inactive for over 9 months. To help maintain a clean and focused backlog, we'll be marking this issue as stale and will close the issue if we detect no activity in the next 7 days. Thank you for your contribution and understanding! 🙏" - close-issue-message: "Hello 👋, This issue has been inactive for over 9 months and hasn't received any updates since it was marked as stale. We'll be closing this issue for now, but if you believe this issue is still relevant, please feel free to reopen it. Thank you for your contribution and understanding! 🙏" + stale-issue-message: > + Hello 👋, this issue has been inactive for over 9 months. To help maintain a clean and focused backlog, + we'll be marking this issue as stale and will engage on it to decide if it is still applicable. + + Thank you for your contribution and understanding! 🙏 stale-issue-label: "stale" exempt-issue-labels: "needs discussion,untriaged" # Comma-separated list of labels. days-before-stale: 270 - days-before-close: 7 + days-before-close: -1 ascending: true # https://github.com/actions/stale#ascending operations-per-run: 500