Skip to content

Commit 706f37d

Browse files
workflows updated
1 parent cfe1dec commit 706f37d

3 files changed

Lines changed: 20 additions & 3 deletions

File tree

.github/workflows/actions_release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ on:
99
script:
1010
description: "Specify a script to run after audit fix"
1111
required: false
12-
default: "yarn run all"
12+
default: "yarn all"
13+
node_version:
14+
description: "Node.js version to use"
15+
required: false
16+
default: "24"
1317

1418
permissions:
1519
contents: read
@@ -24,3 +28,4 @@ jobs:
2428
with:
2529
tag: "${{ github.event.inputs.tag }}"
2630
script: "${{ github.event.inputs.script }}"
31+
node_version: ${{ github.event.inputs.node_version || '24' }}

.github/workflows/audit_package.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@ on:
1414
script:
1515
description: "Specify a script to run after audit fix"
1616
required: false
17-
default: "yarn run all"
18-
17+
default: "yarn all"
18+
node_version:
19+
description: "Node.js version to use"
20+
required: false
21+
default: "24"
22+
1923
schedule:
2024
- cron: "0 0 * * 1"
2125

@@ -26,6 +30,7 @@ jobs:
2630
base_branch: ${{ inputs.base_branch || 'main' }}
2731
package_manager: "yarn"
2832
script: ${{ inputs.script || 'yarn run all' }}
33+
node_version: ${{ inputs.node_version || '24' }}
2934

3035
permissions:
3136
contents: write

.github/workflows/auto_cherry_pick.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ on:
1515
description: "Specify a script to run after audit fix"
1616
required: false
1717
default: "yarn run all"
18+
node_version:
19+
description: "Node.js version to use"
20+
required: false
21+
default: "24"
22+
1823
pull_request:
1924
types: [opened, synchronize, labeled]
2025

@@ -35,3 +40,5 @@ jobs:
3540
package_manager: "yarn"
3641
script: ${{ inputs.script || 'yarn run all' }}
3742
mode: ${{ github.event_name == 'pull_request' && 'verify' || inputs.mode }}
43+
node_version: ${{ inputs.node_version || '24' }}
44+

0 commit comments

Comments
 (0)