]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
.github/workflows/redmine-upkeep: bump limit
authorPatrick Donnelly <pdonnell@ibm.com>
Tue, 12 Aug 2025 20:01:44 +0000 (16:01 -0400)
committerPatrick Donnelly <pdonnell@ibm.com>
Wed, 27 Aug 2025 15:48:26 +0000 (11:48 -0400)
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 <pdonnell@ibm.com>
.github/workflows/redmine-upkeep.yml

index 70d4a67810036ae16b535e0bf2acdc7395f33808..9bb3bdfec23aacf66ca4709ef028550ffc9cea86 100644 (file)
@@ -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 }}