diff --git a/.github/workflows/actions_release.yml b/.github/workflows/actions_release.yml index cdcd26e..055f299 100644 --- a/.github/workflows/actions_release.yml +++ b/.github/workflows/actions_release.yml @@ -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 @@ -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 }}" \ No newline at end of file + node_version: "${{ github.event.inputs.node_version }}" diff --git a/.github/workflows/audit_package.yml b/.github/workflows/audit_package.yml index c33388f..19b24ce 100644 --- a/.github/workflows/audit_package.yml +++ b/.github/workflows/audit_package.yml @@ -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 @@ -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: diff --git a/.github/workflows/auto_cherry_pick.yml b/.github/workflows/auto_cherry_pick.yml index c389219..385fcab 100644 --- a/.github/workflows/auto_cherry_pick.yml +++ b/.github/workflows/auto_cherry_pick.yml @@ -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 @@ -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' }}"