Skip to content

Commit

Permalink
put args directly
Browse files Browse the repository at this point in the history
  • Loading branch information
valentin-feron committed Oct 24, 2023
1 parent 15d37c6 commit 7afbfda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actions/check-in/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
args:
description: "Arguments to pass to 'pack check-in"
required: false
default: --auto-choose-default-action --bypass-docstring-validation --bypass-tests --bypass-code-formatting --verbose
default: "--auto-choose-default-action --bypass-docstring-validation --bypass-tests --bypass-code-formatting --verbose"
ssh-private-key:
description: 'SSH private key to push to remote.'
required: true
Expand Down Expand Up @@ -41,4 +41,4 @@ runs:

- name: Check in
shell: bash
run: pack check-in "${{ inputs.commit-message }}" ${{ inputs.args }}
run: pack check-in "${{ inputs.commit-message }}" --auto-choose-default-action --bypass-docstring-validation --bypass-tests --bypass-code-formatting --verbose

0 comments on commit 7afbfda

Please sign in to comment.