Skip to content

Commit

Permalink
fix: use correct gh syntax for checking absent selector
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 committed Nov 4, 2023
1 parent 25cc722 commit f3735ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/schedule-durable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ jobs:
# "workflow_dispatch" API call.
DURABLE_TEST_BRANCH: ${{ steps.get_branch.outputs.branch }}
run: |
# For scheduled events, "test_selector" will be null. Run all tests for QA but only "fast" ones for other envs.
# For scheduled events, "test_selector" will be null. Run all tests for QA but only "fast" ones for other
# envs.
test_selector=${{ github.event.inputs.test_selector || '.' }}
if [[ -z ${{ github.event.inputs.test_selector }} ]]; then
if [[ ${{ github.event.inputs.test_selector == null }} ]]; then
if [[ ${{ matrix.network != 'qa' }} ]]; then
test_selector="fast"
fi
Expand Down

0 comments on commit f3735ab

Please sign in to comment.