We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d030130 commit f1a8af1Copy full SHA for f1a8af1
.github/workflows/release-python.yml
@@ -23,7 +23,9 @@ env:
23
SILK_ASSET_GROUP: mongodb-python-driver
24
EVERGREEN_PROJECT: mongo-python-driver
25
# Constant
26
- DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && inputs.dry_run || 'true' }}
+ # inputs will be empty on a scheduled run. so, we only set dry_run
27
+ # to 'false' when the input is set to 'false'.
28
+ DRY_RUN: ${{ ! contains(inputs.dry_run, 'false') }}
29
FOLLOWING_VERSION: ${{ inputs.following_version || '' }}
30
VERSION: ${{ inputs.version || '10.10.10.10' }}
31
0 commit comments