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
6 changes: 6 additions & 0 deletions .github/workflows/actions_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
tag:
description: "Tag for the release"
required: true
node_version:
description: "Specify Node.js version"
required: false
type: string
default: "24"

permissions:
contents: read
Expand All @@ -20,3 +25,4 @@ jobs:
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
with:
tag: "${{ github.event.inputs.tag }}"
node_version: "${{ github.event.inputs.node_version }}"
7 changes: 7 additions & 0 deletions .github/workflows/audit_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ on:
description: "Specify a base branch"
required: false
default: "main"
node_version:
description: "Specify Node.js version"
required: false
type: string
default: "24"

schedule:
- cron: "0 0 * * 1"

Expand All @@ -20,6 +26,7 @@ jobs:
with:
force: ${{ inputs.force || false }}
base_branch: ${{ inputs.base_branch || 'main' }}
node_version: ${{ inputs.node_version || '24' }}

permissions:
contents: write
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/auto_cherry_pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
description: "Run mode: cherry-pick or verify"
required: false
default: "cherry-pick"
node_version:
description: "Specify Node.js version"
required: false
type: string
default: "24"

pull_request:
types: [labeled, opened, synchronize]
Expand All @@ -30,3 +35,4 @@ jobs:
repo-name: "repository-dispatch"
base_branch: ${{ inputs.base_branch }}
mode: ${{ github.event_name == 'pull_request' && 'verify' || inputs.mode }}
node_version: ${{ inputs.node_version || '24' }}
Loading
Loading