generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathaction.yml
44 lines (44 loc) · 1.2 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: "npm audit fix"
description: "Run `npm audit fix` and create a pull request"
author: "Masafumi Koba"
inputs:
github_token:
description: "GitHub token"
required: false
default: ${{ github.token }}
github_user:
description: "GitHub user name for commit changes"
required: false
default: ${{ github.actor }}
github_email:
description: "GitHub user email for commit changes"
required: false
default: "${{ github.actor }}@users.noreply.github.com"
branch:
description: "Created branch"
required: false
default: "npm-audit-fix-action/fix"
default_branch:
description: "Default branch"
required: false
commit_title:
description: "Commit and PR title"
required: false
default: "build(deps): npm audit fix"
labels:
description: "PR labels (comma-separated)"
required: false
default: "dependencies, javascript, security"
assignees:
description: "PR assignees (comma-separated)"
required: false
npm_args:
description: "Arguments for the `npm` command"
required: false
path:
description: "Path to the project root directory"
required: false
default: "."
runs:
using: "node20"
main: "dist/index.cjs"