-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes the arguments for the npm audit fix action
- Loading branch information
1 parent
5b86d2f
commit 6a3ccb7
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
name: npm audit fix | ||
name: NPM audit fix | ||
|
||
on: | ||
workflow_dispatch: # manually | ||
|
||
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 | ||
- 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" |