From e4e27052f57040f073c6c1e4aedaecaaec77d170 Mon Sep 17 00:00:00 2001 From: Simon Pasquier Date: Tue, 10 Jan 2023 18:00:57 +0100 Subject: [PATCH] Increase 'operations-per-run' for the stale action (#5273) The default value of 30 is too low for the repository and the action fails to process all issues and pull requests. This change also fixes the exclusion list for the "help wanted" label. Signed-off-by: Simon Pasquier Signed-off-by: Simon Pasquier --- .github/workflows/stale.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index b8e09b3f0..b6440c1d2 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -14,7 +14,8 @@ jobs: days-before-stale: 60 days-before-issue-close: 120 days-before-pr-close: -1 # Prevent closing PRs - exempt-issue-labels: 'kind/feature,help-wanted,kind/bug' + exempt-issue-labels: 'kind/feature,help wanted,kind/bug' stale-issue-label: 'stale' stale-pr-label: 'stale' exempt-draft-pr: true + operations-per-run: 500