From 6a3ccb7f28661dd7066af31a8194a2f55acccb02 Mon Sep 17 00:00:00 2001 From: mr Date: Thu, 27 Jun 2024 18:29:40 -0400 Subject: [PATCH] fixes the arguments for the npm audit fix action --- .github/workflows/npm-audit-fix.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/npm-audit-fix.yml b/.github/workflows/npm-audit-fix.yml index 050b4df17..2e9ee12c8 100644 --- a/.github/workflows/npm-audit-fix.yml +++ b/.github/workflows/npm-audit-fix.yml @@ -1,4 +1,4 @@ -name: npm audit fix +name: NPM audit fix on: workflow_dispatch: # manually @@ -6,10 +6,16 @@ on: jobs: npm-audit-fix: runs-on: ubuntu-latest - commit_title: "chore(deps): update npm dependencies" permissions: contents: write pull-requests: write steps: - - uses: actions/checkout@v3 - - uses: ybiquitous/npm-audit-fix-action@e7e5e66fe613cd5e556db66eef24156b4bfa6134 \ No newline at end of file + - name: Check out Git repository + uses: actions/checkout@v3 + - name: Use npm audit fix + uses: ybiquitous/npm-audit-fix-action@e7e5e66fe613cd5e556db66eef24156b4bfa6134 + with: + commit_title: "chore(deps): update npm dependencies" + default_branch: "main" + description: "Run npm audit fix" + branch: "fix/npm-audit-fix"