Skip to content

Commit

Permalink
feat(ci): Condition fix (#5525)
Browse files Browse the repository at this point in the history
  • Loading branch information
AliaksandrRyzhou authored and SokratisVidros committed May 13, 2024
1 parent 911df79 commit 75ac314
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/reusable-api-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ jobs:
deployments: write
id-token: write
needs: [check_submodule_token]
if: |
${{ contains (inputs.job-name,'-ee') && inputs.test-e2e-ee-affected == 'true' }} ||
${{ !contains (inputs.job-name,'-ee') && inputs.test-e2e-affected == 'true' }}
if: ${{ (contains(inputs.job-name, '-ee') && inputs.test-e2e-ee-affected) || (!contains(inputs.job-name, '-ee') && inputs.test-e2e-affected) }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# checkout with submodules if token is provided
Expand Down

0 comments on commit 75ac314

Please sign in to comment.