Skip to content

Commit

Permalink
feat: --ignore-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Yehonal authored Mar 28, 2024
1 parent e92d631 commit dff5d5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions better-dependabot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ inputs:
required: false
audit_command:
description: 'Audit command to use. Default: npm audit --package-lock-only fix'
default: 'npm audit --package-lock-only fix'
default: 'npm audit --package-lock-only --ignore-scripts fix'
required: false
package_manager:
description: 'Package manager to use. Default: npm'
Expand Down Expand Up @@ -89,7 +89,7 @@ runs:
working-directory: ${{ inputs.working_directory }}
if: steps.check_pr.outputs.pr_exists == '0'
shell: bash
run: ${{ inputs.package_manager }} install --package-lock-only
run: ${{ inputs.package_manager }} install --package-lock-only --ignore-scripts

- name: Audit fix
working-directory: ${{ inputs.working_directory }}
Expand Down

0 comments on commit dff5d5f

Please sign in to comment.