We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e538319 commit 843a366Copy full SHA for 843a366
.github/workflows/auto_cherry_pick.yml
@@ -15,6 +15,12 @@ on:
15
description: "Specify package manager if available (npm or yarn)"
16
required: false
17
default: "yarn"
18
+ node_version:
19
+ description: "Specify Node.js version"
20
+ required: false
21
+ type: string
22
+ default: "20"
23
+
24
25
pull_request:
26
types: [labeled, opened, synchronize]
@@ -35,4 +41,5 @@ jobs:
35
41
base_branch: ${{ inputs.base_branch }}
36
42
script: ${{ inputs.script }}
37
43
package_manager: ${{ inputs.package_manager }}
44
+ node_version: ${{ inputs.node_version }}
38
45
mode: ${{ github.event_name == 'pull_request' && 'verify' || inputs.mode }}
0 commit comments