From a2d04570fedf4fcc844a4068086fc09f339155ea Mon Sep 17 00:00:00 2001 From: Manifold Paradox Date: Mon, 1 Jul 2024 10:15:16 +0900 Subject: [PATCH] Update close_inactive_issues.yaml --- .github/workflows/close_inactive_issues.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/close_inactive_issues.yaml b/.github/workflows/close_inactive_issues.yaml index 256c076ccf..84c3aa469b 100644 --- a/.github/workflows/close_inactive_issues.yaml +++ b/.github/workflows/close_inactive_issues.yaml @@ -2,7 +2,7 @@ name: Close inactive issues on: workflow_dispatch: schedule: - - cron: "0 0 1 * *" + - cron: "0 1 * * *" jobs: close-issues: @@ -13,11 +13,11 @@ jobs: steps: - uses: actions/stale@v5 with: - days-before-issue-stale: -1 - days-before-issue-close: 14 + days-before-issue-stale: 14 + days-before-issue-close: 1 stale-issue-label: "stale" - stale-issue-message: "This issue is stale because it has been open for 30 days with no activity." - close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale." + stale-issue-message: "This issue is stale because it has been open for 14 days with no activity." + close-issue-message: "This issue was closed because it has been inactive for 1 days since being marked as stale." days-before-pr-stale: -1 days-before-pr-close: -1 repo-token: ${{ secrets.GITHUB_TOKEN }}