From: Patrick Donnelly Date: Tue, 12 Aug 2025 20:01:44 +0000 (-0400) Subject: .github/workflows/redmine-upkeep: bump limit X-Git-Tag: testing/wip-vshankar-testing-20250829.190601-debug~12^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=07d4ca21a51f8a53899c6819c8b1b61df8b28693;p=ceph-ci.git .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 --- 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 }}