From 03c7735f047339e34524b242e00ffd0e6355d1d0 Mon Sep 17 00:00:00 2001 From: Julia March <101819212+juliamrch@users.noreply.github.com> Date: Fri, 19 Jul 2024 16:16:07 +0200 Subject: [PATCH 1/2] fix: iss5 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 8597d85..4c223e0 100644 --- a/action.yml +++ b/action.yml @@ -41,7 +41,7 @@ runs: - name: Install clever-tools shell: bash run: npm install -g clever-tools - - name: Execute commands based on action + - name: Execute commands based on actio run: | if [ "${{ github.event.action }}" = 'opened' ] || [ "${{ github.event.action }}" = 'reopened' ]; then clever create --type ${{ inputs.type }} ${{ inputs.name }} --alias ${{ inputs.alias }} --region ${{ inputs.region }} --org ${{ inputs.organization }} @@ -64,6 +64,6 @@ runs: clever deploy --force elif [ "${{ github.event.action }}" = 'closed' ]; then clever link -o "$ORGA_ID" ${{ inputs.name }} - clever delete --alias ${{ inputs.alias }} + clever delete --alias ${{ inputs.alias }} --yes fi shell: bash \ No newline at end of file From 63e20c809e89512ee557fe7ad66b90c1ebdfa548 Mon Sep 17 00:00:00 2001 From: Julia March <101819212+juliamrch@users.noreply.github.com> Date: Fri, 19 Jul 2024 16:29:16 +0200 Subject: [PATCH 2/2] fix typo --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4c223e0..2885a6d 100644 --- a/action.yml +++ b/action.yml @@ -41,7 +41,7 @@ runs: - name: Install clever-tools shell: bash run: npm install -g clever-tools - - name: Execute commands based on actio + - name: Execute commands based on action run: | if [ "${{ github.event.action }}" = 'opened' ] || [ "${{ github.event.action }}" = 'reopened' ]; then clever create --type ${{ inputs.type }} ${{ inputs.name }} --alias ${{ inputs.alias }} --region ${{ inputs.region }} --org ${{ inputs.organization }}