From 40f7060ac5c4e8691d3d5da4d78c8ffd56925371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Guti=C3=A9rrez=20Hermoso?= Date: Wed, 26 Jun 2024 15:24:47 -0400 Subject: [PATCH] workflows: fix syntax error Oops, have to quote the string because of the colon --- .github/workflows/docker_latest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker_latest.yml b/.github/workflows/docker_latest.yml index e105f01e..e5b7a5b8 100644 --- a/.github/workflows/docker_latest.yml +++ b/.github/workflows/docker_latest.yml @@ -12,7 +12,7 @@ on: workflow_dispatch: inputs: latest_branch: - description: Branch from which to create the latest Docker image (default: latest_candidate) + description: "Branch from which to create the latest Docker image (default: latest_candidate)" type: string required: true default_value: latest_candidate