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
4 changes: 2 additions & 2 deletions .github/workflows/actions_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
script:
description: "Script to build/bundle the action"
required: false
default: "ncc build lib/main.js -o dist --license license.txt --target es2024"
default: "npm run pack"

permissions:
contents: read
Expand All @@ -29,4 +29,4 @@ jobs:
with:
tag: "${{ github.event.inputs.tag }}"
node_version: ${{ inputs.node_version || '24' }}
script: ${{ inputs.script || 'ncc build lib/main.js -o dist --license license.txt --target es2024' }}
script: ${{ inputs.script || 'npm run pack' }}
4 changes: 2 additions & 2 deletions .github/workflows/audit_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
script:
description: "Script to build/bundle the action"
required: false
default: "ncc build lib/main.js -o dist --license license.txt --target es2024"
default: "npm run pack"
schedule:
- cron: "0 0 * * 1"

Expand All @@ -29,7 +29,7 @@ jobs:
force: ${{ inputs.force || false }}
base_branch: ${{ inputs.base_branch || 'main' }}
node_version: ${{ inputs.node_version || '24' }}
script: ${{ inputs.script || 'ncc build lib/main.js -o dist --license license.txt --target es2024' }}
script: ${{ inputs.script || 'npm run pack' }}

permissions:
contents: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/auto_cherry_pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
script:
description: "Script to build/bundle the action"
required: false
default: "ncc build lib/main.js -o dist --license license.txt --target es2024"
default: "npm run pack"

pull_request:
types: [ opened, synchronize, labeled ]
Expand All @@ -44,4 +44,4 @@ jobs:
base_branch: ${{ inputs.base_branch || 'main' }}
mode: ${{ github.event_name == 'pull_request' && 'verify' || inputs.mode || 'cherry-pick' }}
node_version: ${{ inputs.node_version || '24' }}
script: ${{ inputs.script || 'ncc build lib/main.js -o dist --license license.txt --target es2024' }}
script: ${{ inputs.script || 'npm run pack' }}
Loading