Skip to content

Commit 2f2cb60

Browse files
committed
.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 <[email protected]>
1 parent ef15ecb commit 2f2cb60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/redmine-upkeep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ jobs:
5656
--github-action
5757
--git-dir=./ceph/
5858
${{ github.event_name == 'workflow_dispatch' && (inputs.debug && '--debug' || '') || '' }}
59-
${{ github.event_name == 'workflow_dispatch' && format('--limit={}', inputs.limit) || '' }}
59+
${{ github.event_name == 'workflow_dispatch' && format('--limit={0}', inputs.limit) || '' }}
6060
env:
6161
REDMINE_API_KEY: ${{ secrets.REDMINE_API_KEY_BACKPORT_BOT }}

0 commit comments

Comments
 (0)