From: Patrick Donnelly Date: Wed, 9 Jul 2025 16:02:11 +0000 (-0400) Subject: .github: fix workflow format error X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2f2cb6089a99ea076b1a4d31c799e5f6d4fb5df9;p=ceph.git .github: fix workflow format error Warning: Encountered an error when evaluating display name ${{ format('python3 ceph/src/script/redmine-upkeep.py --github-action --git-dir=./ceph/ {0} {1} ', github.event_name == 'workflow_dispatch' && (inputs.debug && '--debug' || '') || '', github.event_name == 'workflow_dispatch' && format('--limit={}', inputs.limit) || '') }}. The template is not valid. .github/workflows/redmine-upkeep.yml (Line: 54, Col: 14): The following format string is invalid: --limit={} Error: The template is not valid. .github/workflows/redmine-upkeep.yml (Line: 54, Col: 14): The following format string is invalid: --limit={} Signed-off-by: Patrick Donnelly --- diff --git a/.github/workflows/redmine-upkeep.yml b/.github/workflows/redmine-upkeep.yml index 49d3cabc7db..43adaede70e 100644 --- a/.github/workflows/redmine-upkeep.yml +++ b/.github/workflows/redmine-upkeep.yml @@ -56,6 +56,6 @@ jobs: --github-action --git-dir=./ceph/ ${{ github.event_name == 'workflow_dispatch' && (inputs.debug && '--debug' || '') || '' }} - ${{ github.event_name == 'workflow_dispatch' && format('--limit={}', inputs.limit) || '' }} + ${{ github.event_name == 'workflow_dispatch' && format('--limit={0}', inputs.limit) || '' }} env: REDMINE_API_KEY: ${{ secrets.REDMINE_API_KEY_BACKPORT_BOT }}