From 896f59b96b7a3fcae201d88a7a98d22f69296c01 Mon Sep 17 00:00:00 2001 From: Amir Poolad Date: Mon, 28 Apr 2025 15:48:01 -0400 Subject: [PATCH] Increase the daily stale issue action API call limit --- .github/workflows/stale.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 5f6e9fd9088..a8db7f5883d 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -20,6 +20,11 @@ jobs: # Start from the oldest issues ascending: true + # Upper limit for number of API calls per day + # This worklfow does 2-3 API calls per issue + # including issues that have been marked stale + operations-per-run: 300 + # The configuration below can be used to allow the same behaviour with PRs. # Since we currently don't want to close old PRs, it is commented out but # left here in case we change our mind.