From 2f2cb6089a99ea076b1a4d31c799e5f6d4fb5df9 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Wed, 9 Jul 2025 12:02:11 -0400 Subject: [PATCH] .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 --- .github/workflows/redmine-upkeep.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/redmine-upkeep.yml b/.github/workflows/redmine-upkeep.yml index 49d3cabc7dbdd..43adaede70e9e 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 }} -- 2.39.5