Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/actions_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
description: "Build script to run"
required: false
default: "yarn build"
node_version:
description: "Node.js version to use"
required: false
default: "24"

permissions:
contents: read
Expand All @@ -24,4 +28,5 @@ jobs:
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
with:
tag: "${{ github.event.inputs.tag }}"
script: ${{ inputs.script || 'yarn build' }}
script: ${{ inputs.script || 'yarn build' }}
node_version: ${{ inputs.node_version || '24' }}
5 changes: 5 additions & 0 deletions .github/workflows/audit_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ on:
description: "Package manager to use"
required: false
default: "yarn"
node_version:
description: "Node.js version to use"
required: false
default: "24"

schedule:
- cron: "0 0 * * 1"
Expand All @@ -31,6 +35,7 @@ jobs:
base_branch: ${{ inputs.base_branch || 'main' }}
script: ${{ inputs.script || 'yarn build' }}
package_manager: ${{ inputs.package_manager || 'yarn' }}
node_version: ${{ inputs.node_version || '24' }}

permissions:
contents: write
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/auto_cherry_pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ on:
description: "Package manager to use"
required: false
default: "yarn"
node_version:
description: "Node.js version to use"
required: false
default: "24"

pull_request:
types: [opened, synchronize, labeled]
Expand All @@ -40,3 +44,4 @@ jobs:
mode: ${{ github.event_name == 'pull_request' && 'verify' || inputs.mode }}
script: ${{ inputs.script || 'yarn build' }}
package_manager: ${{ inputs.package_manager || 'yarn' }}
node_version: ${{ inputs.node_version || '24' }}
Loading