Skip to content

Commit 4940cac

Browse files
committed
chore: Set the '' as default value
1 parent 8a2fd21 commit 4940cac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/dependency_compatibility_test.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ on:
77
workflow_dispatch:
88
inputs:
99
dependencies-list:
10-
description: 'Comma-separated list of dependencies to test (Format: dep1=1.0,dep2=2.0)'
10+
description: 'Comma-separated list of dependencies to test (Format: dep1=1.0,dep2=2.0).
11+
No input (default) will run the the upper-bound dependencies file.'
1112
required: false
1213
default: ''
1314
schedule:
@@ -25,7 +26,7 @@ jobs:
2526
java-version: '21'
2627
distribution: 'temurin'
2728
cache: maven
28-
- run: echo "DEPENDENCIES_LIST=${{ github.event.inputs.dependencies-list }}" >> $GITHUB_ENV
29+
- run: echo "DEPENDENCIES_LIST=${{ github.event.inputs.dependencies-list || '' }}" >> $GITHUB_ENV
2930
# Set up the for the CI
3031
- name: Install sdk-platform-java's modules
3132
# gapic-generator-java requires Java 8 and is irrelevant for this CI

0 commit comments

Comments
 (0)