From cab00e9f820ea44c2fbc5eeb502a11cea0b0a6ef Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 30 Oct 2025 17:42:11 +0000 Subject: [PATCH] Add force input parameter to GitHub Action - Add force input with default value false - Pass force flag to multi run command as --force=true/false - Allows users to control the force behavior of the multi binary --- action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 566dfab..e37f096 100644 --- a/action.yml +++ b/action.yml @@ -40,6 +40,11 @@ inputs: required: false default: "." + force: + description: "Whether to force the operation. Passed as --force flag to multi run command." + required: false + default: "false" + outputs: output-string: description: 'Output string' @@ -64,4 +69,4 @@ runs: shell: bash working-directory: ${{ inputs.working-directory }} if: ${{ inputs.install-only != 'true' && inputs.dry-run != 'true' }} - run: "multi run --enable-colors=always" \ No newline at end of file + run: "multi run --enable-colors=always --force='${{ inputs.force }}'" \ No newline at end of file