From 8bb3271e2e85f16ed49dc1cf53c8cf3917162b51 Mon Sep 17 00:00:00 2001 From: Raj-StepSecurity Date: Thu, 7 May 2026 09:54:06 +0530 Subject: [PATCH 1/3] ci: Update auto_cherry_pick.yml --- .github/workflows/auto_cherry_pick.yml | 6 ------ 1 file changed, 6 deletions(-) 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' }}" From 0d812d860acd95f8b95e89a7fbb456eabc3fd7fe Mon Sep 17 00:00:00 2001 From: Raj-StepSecurity Date: Thu, 7 May 2026 09:54:32 +0530 Subject: [PATCH 2/3] Update actions_release.yml --- .github/workflows/actions_release.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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 }}" From 1f88d458863cd65d6ed14852f2d1aa44d03efe9e Mon Sep 17 00:00:00 2001 From: Raj-StepSecurity Date: Thu, 7 May 2026 09:54:55 +0530 Subject: [PATCH 3/3] Update audit_package.yml --- .github/workflows/audit_package.yml | 6 ------ 1 file changed, 6 deletions(-) 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: