Skip to content

Commit

Permalink
add curlies to some ifs
Browse files Browse the repository at this point in the history
  • Loading branch information
gshank committed Aug 1, 2024
1 parent ccd9d6f commit f9dcba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ jobs:

steps:
- name: Check out repository
if: github.event_name == 'pull_request'|| github.event_name == 'push'
if: ${{ github.event_name == 'pull_request'|| github.event_name == 'push' }}
uses: actions/checkout@v4

- name: Check out the repository (workflow_dispatch)
if: github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call'
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' }}
uses: actions/checkout@v4
with:
ref: ${{ inputs.adapter_branch }}
Expand Down

0 comments on commit f9dcba6

Please sign in to comment.