Skip to content

Commit 8d95dc5

Browse files
author
Shi Shu
committed
Add test mode input to release patch trigger
1 parent 905141c commit 8d95dc5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release-patch-2-trigger.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ on:
3232
required: false
3333
type: 'boolean'
3434
default: false
35+
test_mode:
36+
description: 'Whether or not to run in test mode'
37+
required: false
38+
type: 'boolean'
39+
default: false
3540

3641
jobs:
3742
trigger-patch-release:
@@ -68,5 +73,6 @@ jobs:
6873
GITHUB_EVENT_NAME: '${{ github.event_name }}'
6974
GITHUB_EVENT_PAYLOAD: '${{ toJSON(github.event) }}'
7075
FORCE_SKIP_TESTS: '${{ github.event.inputs.force_skip_tests }}'
76+
TEST_MODE: '${{ github.event.inputs.test_mode }}'
7177
run: |
7278
node scripts/releasing/patch-trigger.js --dry-run=${{ github.event.inputs.dry_run }}

0 commit comments

Comments
 (0)