From 3438495ca4dcd08c4398e52ece5cf97a8055711a Mon Sep 17 00:00:00 2001 From: Dominik Rosiek <58699848+sumo-drosiek@users.noreply.github.com> Date: Mon, 8 Jul 2024 19:40:14 +0200 Subject: [PATCH] chore: allow to forcefully recreate all images (#98) Signed-off-by: Dominik Rosiek --- .github/workflows/certify.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/certify.yml b/.github/workflows/certify.yml index f00f7d1..31e9dfd 100644 --- a/.github/workflows/certify.yml +++ b/.github/workflows/certify.yml @@ -2,7 +2,14 @@ name: Manually certify all container images on: workflow_dispatch: - + inputs: + force: + type: choice + description: Perform action even if image already exists + options: + - "false" + - "true" + defaults: run: shell: bash @@ -23,3 +30,4 @@ jobs: run: make certify-all env: PYAXIS_API_TOKEN: ${{ secrets.RED_HAT_API_KEY }} + FORCE: "${{ inputs.force }}"