From 93a5cb2e7b927d3d3d68b5c1c0d996e1d65f4876 Mon Sep 17 00:00:00 2001 From: Takuro Ashie Date: Fri, 31 Mar 2023 11:33:15 +0900 Subject: [PATCH] GHA: Shorten `days-before-close` to 7 for issue auto closer Signed-off-by: Takuro Ashie --- .github/workflows/stale-actions.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/stale-actions.yml b/.github/workflows/stale-actions.yml index f3f84c0ad8..17823f0800 100644 --- a/.github/workflows/stale-actions.yml +++ b/.github/workflows/stale-actions.yml @@ -11,11 +11,11 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: 30 - days-before-close: 30 - stale-issue-message: "This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 30 days" - stale-pr-message: "This PR has been automatically marked as stale because it has been open 90 days with no activity. Remove stale label or comment or this PR will be closed in 30 days" - close-issue-message: "This issue was automatically closed because of stale in 30 days" - close-pr-message: "This PR was automatically closed because of stale in 30 days" + days-before-close: 7 + stale-issue-message: "This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 7 days" + stale-pr-message: "This PR has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this PR will be closed in 7 days" + close-issue-message: "This issue was automatically closed because of stale in 7 days" + close-pr-message: "This PR was automatically closed because of stale in 7 days" stale-pr-label: "stale" stale-issue-label: "stale" exempt-issue-labels: "waiting-for-triage,bug,enhancement,feature request,pending,work_in_progress,v1,v2"