From 77a18e07c065cd06ad92c20c3d04a20f34343a69 Mon Sep 17 00:00:00 2001 From: Tom Kralidis Date: Sun, 10 Mar 2024 10:38:39 -0400 Subject: [PATCH] Stale bot hourly testing dry run (#1589) * update stale-bot to run hourly while testing * update operations per run --- .github/workflows/manage-stale-issues-prs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manage-stale-issues-prs.yml b/.github/workflows/manage-stale-issues-prs.yml index 05fa4d5..c6f51a8 100644 --- a/.github/workflows/manage-stale-issues-prs.yml +++ b/.github/workflows/manage-stale-issues-prs.yml @@ -6,8 +6,8 @@ env: on: schedule: - - cron: '1 3 * * 0' # runs every Sunday at 03h01 UTC - + # - cron: '1 3 * * 0' # runs every Sunday at 03h01 UTC + - cron: '0 * * * *' # runs every hour, for debugging jobs: stale: permissions: @@ -18,6 +18,7 @@ jobs: steps: - uses: 'actions/stale@v9' with: + operations-per-run: 1000 debug-only: true enable-statistics: true stale-issue-label: stale