From 223c043d77db47c899d4b7a9bb20f57eaac65d18 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stale-actions.yml b/.github/workflows/stale-actions.yml index f3f84c0ad8..14bf00205b 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" + 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 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" + 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"