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: 1 addition & 6 deletions .github/workflows/actions_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ on:
tag:
description: "Tag for the release"
required: true
script:
description: "Specify the build script to run"
required: false
default: "npm run build"
node_version:
description: "Specify Node.js version (e.g., '18', '20', 'lts/*')"
required: false
Expand All @@ -27,5 +23,4 @@ jobs:
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
with:
tag: "${{ github.event.inputs.tag }}"
script: "${{ github.event.inputs.script }}"
node_version: "${{ github.event.inputs.node_version }}"
node_version: "${{ github.event.inputs.node_version }}"
6 changes: 0 additions & 6 deletions .github/workflows/audit_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ on:
description: "Specify a base branch"
required: false
default: "main"
script:
description: "Specify the build script to run"
required: false
type: string
default: "npm run build"
node_version:
description: "Specify Node.js version (e.g., '18', '20', 'lts/*')"
required: false
Expand All @@ -29,7 +24,6 @@ jobs:
uses: step-security/reusable-workflows/.github/workflows/audit_fix.yml@v1
with:
base_branch: ${{ github.event.inputs.base_branch || 'main' }}
script: ${{ github.event.inputs.script || 'yarn build' }}
node_version: "${{ inputs.node_version || '24' }}"

permissions:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/auto_cherry_pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ on:
description: "Base branch to create the PR against"
required: true
default: "main"
script:
description: "Specify a script to run after audit fix"
required: false
default: "npm run build"
mode:
description: "Run mode: cherry-pick or verify"
required: false
Expand All @@ -36,8 +32,6 @@ jobs:
original-owner: "archive"
repo-name: "github-actions-slack"
base_branch: ${{ inputs.base_branch }}
package_manager: "yarn"
script: ${{ inputs.script || 'npm run build' }}
mode: ${{ github.event_name == 'pull_request' && 'verify' || inputs.mode }}
node_version: "${{ inputs.node_version || '24' }}"

Loading