From 62fa0a1f778a1f8a8298fda1dd72c8f6c5075c95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dudak?= Date: Tue, 19 Mar 2024 10:42:12 +0100 Subject: [PATCH 1/2] [core] Lower the frequency of no-response action runs --- .github/workflows/no-response.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml index cab433e1444d4..960b449fb858a 100644 --- a/.github/workflows/no-response.yml +++ b/.github/workflows/no-response.yml @@ -9,7 +9,7 @@ on: types: [created] schedule: # Schedule for five minutes after the hour, every hour - - cron: '5 * * * *' + - cron: '0 3,15 * * *' permissions: {} From 2516d5c1eeefc7c1a4d72bccb67907db0cb08e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dudak?= Date: Tue, 19 Mar 2024 11:18:38 +0100 Subject: [PATCH 2/2] comment --- .github/workflows/no-response.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml index 960b449fb858a..1c97b2f528c67 100644 --- a/.github/workflows/no-response.yml +++ b/.github/workflows/no-response.yml @@ -8,7 +8,9 @@ on: issue_comment: types: [created] schedule: - # Schedule for five minutes after the hour, every hour + # These runs in our repos are spread evenly throughout the day to avoid hitting rate limits. + # If you change this schedule, consider changing the remaining repositories as well. + # Runs at 3 am, 3 pm - cron: '0 3,15 * * *' permissions: {}