From c3415822991f523c64b4a051657a53a08ee230d9 Mon Sep 17 00:00:00 2001 From: Jan Kassens Date: Tue, 9 Apr 2024 09:21:20 -0400 Subject: [PATCH] Run stale job hourly (#28769) --- .github/workflows/stale.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 92e6fc7e4124..86928739a4ea 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -2,8 +2,8 @@ name: 'Manage stale issues and PRs' on: schedule: - # Run daily at 2AM - - cron: '0 2 * * *' + # Run hourly + - cron: '0 * * * *' jobs: stale: @@ -16,7 +16,7 @@ jobs: days-before-stale: 90 # Number of days of inactivity before a stale issue or PR is closed days-before-close: 7 - # Number of issues or PRs to process per day + # API calls per run operations-per-run: 100 # --- Issues --- @@ -43,4 +43,4 @@ jobs: close-pr-message: > Closing this pull request after a prolonged period of inactivity. If this issue is still present in the latest release, please ask for this pull request to be reopened. Thank you! # PRs with these labels will never be considered stale - exempt-pr-labels: "Partner,React Core Team,Resolution: Backlog,Type: Bug,Type: Discussion,Type: Needs Investigation,Type: Regression,Type: Feature Request,Type: Enhancement" \ No newline at end of file + exempt-pr-labels: "Partner,React Core Team,Resolution: Backlog,Type: Bug,Type: Discussion,Type: Needs Investigation,Type: Regression,Type: Feature Request,Type: Enhancement"