From 947080b8d0caf8a7e078a995e0452bcebfbec68c Mon Sep 17 00:00:00 2001 From: Simon Pasquier <spasquie@redhat.com> Date: Thu, 12 Jan 2023 10:50:35 +0100 Subject: [PATCH] Increase 'operations-per-run' for the stale action (#1985) 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 modifies when the job is executed to avoid running it at the same time than prometheus-operator/prometheus-operator and experience quota issues with the GitHub API. Signed-off-by: Simon Pasquier <spasquie@redhat.com> Signed-off-by: Simon Pasquier <spasquie@redhat.com> --- .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 75fca719..e44c68cc 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -1,7 +1,7 @@ name: 'Close stale issues and PRs' on: schedule: - - cron: '30 1 * * *' + - cron: '30 3 * * *' jobs: stale: @@ -18,3 +18,4 @@ jobs: stale-issue-label: 'stale' stale-pr-label: 'stale' exempt-draft-pr: true + operations-per-run: 500 -- GitLab