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


permissions:
contents: read
Expand All @@ -16,6 +27,8 @@ jobs:
actions: read
id-token: write
contents: write
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@fix_Verify_cherry_pick-Logic
with:
tag: "${{ github.event.inputs.tag }}"
tag: "${{ github.event.inputs.tag }}"
node_version: ${{ inputs.node_version }}
script: "${{ github.event.inputs.script }}"
14 changes: 13 additions & 1 deletion .github/workflows/audit_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,28 @@ on:
description: "Specify package manager (npm or yarn)"
required: false
default: "yarn"
node_version:
description: "Specify Node.js version"
required: false
type: string
default: "20"
script:
description: "Specify the build script to run"
required: false
type: string
default: "yarn build"

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

jobs:
audit-fix:
uses: step-security/reusable-workflows/.github/workflows/audit_fix.yml@v1
uses: step-security/reusable-workflows/.github/workflows/audit_fix.yml@fix_Verify_cherry_pick-Logic
with:
base_branch: ${{ inputs.base_branch || 'main' }}
package_manager: "yarn"
node_version: ${{ inputs.node_version }}
script: ${{ inputs.script || 'yarn build' }}

permissions:
contents: write
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/auto_cherry_pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ on:
description: "Specify package manager if available (npm or yarn)"
required: false
default: "yarn"
node_version:
description: "Specify Node.js version"
required: false
type: string
default: "20"


pull_request:
types: [labeled, opened, synchronize]
Expand All @@ -35,4 +41,5 @@ jobs:
base_branch: ${{ inputs.base_branch }}
script: ${{ inputs.script }}
package_manager: ${{ inputs.package_manager }}
node_version: ${{ inputs.node_version }}
mode: ${{ github.event_name == 'pull_request' && 'verify' || inputs.mode }}
Loading