We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de03090 + 916f57c commit adfd783Copy full SHA for adfd783
.github/workflows/audit_package.yml
@@ -7,13 +7,23 @@ on:
7
description: "Specify a base branch"
8
required: false
9
default: "main"
10
+ package_manager:
11
+ description: "Specify package manager (npm or yarn)"
12
+ required: false
13
+ default: "yarn"
14
+
15
+ schedule:
16
+ - cron: "0 0 * * 1"
17
18
jobs:
19
audit-fix:
- uses: step-security/reusable-workflows/.github/workflows/yarn_audit_fix.yml@v1
20
+ uses: step-security/reusable-workflows/.github/workflows/audit_fix.yml@v1
21
with:
- base_branch: ${{ inputs.base_branch }}
22
+ base_branch: ${{ inputs.base_branch || 'main' }}
23
+ package_manager: "yarn"
24
25
permissions:
26
contents: write
27
pull-requests: write
28
+ packages: read
29
+ issues: write
0 commit comments