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