From 63435e5e635d83b052e6221d03a4a140a0661b44 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Wed, 18 Mar 2026 09:56:24 +0100 Subject: [PATCH] fix: update pipelines [skip ci] --- .github/workflows/clean_up.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/clean_up.yaml b/.github/workflows/clean_up.yaml index 7552f4c3..f918bb87 100644 --- a/.github/workflows/clean_up.yaml +++ b/.github/workflows/clean_up.yaml @@ -5,9 +5,20 @@ on: inputs: list_only: description: "only list resources" - default: 'true' + type: boolean + default: true required: true + logLevel: + description: 'Log Level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug + jobs: clean: name: Clean up @@ -23,3 +34,4 @@ jobs: region: 'eu01' tf_resource_prefix: 'tf-acc-' service_account_json_content_b64: "${{ secrets.TF_ACC_SERVICE_ACCOUNT_JSON_B64 }}" + list_only: ${{ inputs.list_only }}