From b9e4a759ae29e8bac0383045c21056ecc583623c Mon Sep 17 00:00:00 2001 From: Xikaro <0regon.end@gmail.com> Date: Tue, 1 Oct 2024 00:37:46 +0500 Subject: [PATCH] Update cron.yml --- .github/workflows/cron.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index b5e0aa604..0d5bbe8d8 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -1,6 +1,7 @@ name: Close Not a TFG Bug issues on: - push: + schedule: + - cron: "30 1 * * *" jobs: close-issues: @@ -13,9 +14,10 @@ jobs: with: days-before-issue-stale: 30 days-before-issue-close: 14 + days-before-pr-stale: -1 + days-before-pr-close: -1 any-of-issue-labels: '1. Type: Not a TFG Bug' stale-issue-label: '2. Status: 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." repo-token: ${{ secrets.GITHUB_TOKEN }} - debug-only: true