From 5a7d8197312dff51a73e139272fb9f9220e8a64e Mon Sep 17 00:00:00 2001 From: Leigh <351529+leighmcculloch@users.noreply.github.com> Date: Fri, 10 Oct 2025 07:18:12 +1000 Subject: [PATCH] Make tag-prefix and tag-alias-prefix required --- .github/workflows/push.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d6cf9be3..bda89e07 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -23,14 +23,15 @@ on: tag-prefix: description: "Tag prefix for the image when pushed (e.g. pr877-v21-)" type: "string" - default: '' + required: true tag-alias-prefix: description: "A second tag prefix for the image when pushed that'll be pushed in addition as an alias (e.g. pr877-)" type: "string" - default: '' + required: true registry_repo: description: "Repo at the registry to push to" type: "string" + required: true secrets: registry: description: "Registry to push to"