We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 905141c commit 8d95dc5Copy full SHA for 8d95dc5
.github/workflows/release-patch-2-trigger.yml
@@ -32,6 +32,11 @@ on:
32
required: false
33
type: 'boolean'
34
default: false
35
+ test_mode:
36
+ description: 'Whether or not to run in test mode'
37
+ required: false
38
+ type: 'boolean'
39
+ default: false
40
41
jobs:
42
trigger-patch-release:
@@ -68,5 +73,6 @@ jobs:
68
73
GITHUB_EVENT_NAME: '${{ github.event_name }}'
69
74
GITHUB_EVENT_PAYLOAD: '${{ toJSON(github.event) }}'
70
75
FORCE_SKIP_TESTS: '${{ github.event.inputs.force_skip_tests }}'
76
+ TEST_MODE: '${{ github.event.inputs.test_mode }}'
71
77
run: |
72
78
node scripts/releasing/patch-trigger.js --dry-run=${{ github.event.inputs.dry_run }}
0 commit comments