From b7e51ac7c89a43c0614682336c366ab59e595e23 Mon Sep 17 00:00:00 2001 From: devthejo Date: Fri, 9 Aug 2024 18:37:03 +0200 Subject: [PATCH] fix: delete input instanceNameSuffix --- .github/workflows/delete_instance.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/delete_instance.yaml b/.github/workflows/delete_instance.yaml index 27c534e..5f8654a 100644 --- a/.github/workflows/delete_instance.yaml +++ b/.github/workflows/delete_instance.yaml @@ -2,6 +2,11 @@ name: Delete instance on: workflow_dispatch: + inputs: + instanceNameSuffix: + description: 'Instance name suffix' + required: false + default: '' schedule: - cron: "0 0 * * *" @@ -36,3 +41,5 @@ jobs: OVH_SSH_KEY_ID: ${{ secrets.OVH_SSH_KEY_ID }} OVH_SERVICE_NAME: ${{ secrets.OVH_SERVICE_NAME }} AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }} + + INSTANCE_NAME_SUFFIX: ${{ inputs.instanceNameSuffix }}