From 2103bce855d9089abcc9726b7711abb794731c54 Mon Sep 17 00:00:00 2001 From: dmvict Date: Tue, 5 Nov 2024 12:53:08 +0200 Subject: [PATCH] Fix action, add option `pre_retry_command` to call of subaction --- action.yml | 1 + main/action.yml | 1 + post/action.yml | 1 + pre/action.yml | 1 + 4 files changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 68af8e8..0c96715 100644 --- a/action.yml +++ b/action.yml @@ -66,6 +66,7 @@ runs: with: action: '${{ inputs.action }}' command: '${{ inputs.command }}' + pre_retry_command: '${{ inputs.pre_retry_command }}' with: '${{ inputs.with }}' current_path: '${{ inputs.current_path }}' steps_context: '${{ inputs.steps_context }}' diff --git a/main/action.yml b/main/action.yml index db0cda4..3057ebe 100644 --- a/main/action.yml +++ b/main/action.yml @@ -66,6 +66,7 @@ runs: with: action: '${{ inputs.action }}' command: '${{ inputs.command }}' + pre_retry_command: '${{ inputs.pre_retry_command }}' with: '${{ inputs.with }}' current_path: '${{ inputs.current_path }}' steps_context: '${{ inputs.steps_context }}' diff --git a/post/action.yml b/post/action.yml index 361423c..9f68ff0 100644 --- a/post/action.yml +++ b/post/action.yml @@ -66,6 +66,7 @@ runs: with: action: '${{ inputs.action }}' command: '${{ inputs.command }}' + pre_retry_command: '${{ inputs.pre_retry_command }}' with: '${{ inputs.with }}' current_path: '${{ inputs.current_path }}' steps_context: '${{ inputs.steps_context }}' diff --git a/pre/action.yml b/pre/action.yml index 3380f99..070f2ca 100644 --- a/pre/action.yml +++ b/pre/action.yml @@ -66,6 +66,7 @@ runs: with: action: '${{ inputs.action }}' command: '${{ inputs.command }}' + pre_retry_command: '${{ inputs.pre_retry_command }}' with: '${{ inputs.with }}' current_path: '${{ inputs.current_path }}' steps_context: '${{ inputs.steps_context }}'