From 07d4ca21a51f8a53899c6819c8b1b61df8b28693 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Tue, 12 Aug 2025 16:01:44 -0400 Subject: [PATCH] .github/workflows/redmine-upkeep: bump limit Now that this no longer hits the github API in general, it's safer to process many more issues. This is generally good as it's not possible to construct a specific search that will process issues that have had their corresponding PR merged. (We do have merge triggers however.) Additionally, process more issues but only every 12 hours. Signed-off-by: Patrick Donnelly --- .github/workflows/redmine-upkeep.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/redmine-upkeep.yml b/.github/workflows/redmine-upkeep.yml index 70d4a678100..9bb3bdfec23 100644 --- a/.github/workflows/redmine-upkeep.yml +++ b/.github/workflows/redmine-upkeep.yml @@ -18,7 +18,7 @@ on: default: false type: boolean schedule: - - cron: '*/30 * * * *' + - cron: '0 */12 * * *' pull_request_target: types: [closed] branches: @@ -82,6 +82,7 @@ jobs: python3 ceph/src/script/redmine-upkeep.py --github-action --git-dir=./ceph/ + --limit=5000 env: REDMINE_API_KEY: ${{ secrets.REDMINE_API_KEY_BACKPORT_BOT }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -92,6 +93,7 @@ jobs: python3 ceph/src/script/redmine-upkeep.py --github-action --git-dir=./ceph/ + --limit=5000 env: REDMINE_API_KEY: ${{ secrets.REDMINE_API_KEY_BACKPORT_BOT }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -- 2.39.5