Skip to content

Commit

Permalink
Removed e2e release branch logic in nightwatch workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkCalvert committed Aug 30, 2023
1 parent 965916c commit faa43c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nightwatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
type: string
jobs:
e2e_be:
if: startsWith(github.ref_name , 'release/') && inputs.e2e
if: inputs.e2e
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_be.yml@build
secrets: inherit
with:
Expand All @@ -25,7 +25,7 @@ jobs:
test_id: 'fixture'
test_type: ':nightwatch:'
e2e_fe_smoke:
if: startsWith(github.ref_name , 'release/') && inputs.e2e
if: inputs.e2e
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_fe.yml@build
secrets: inherit
with:
Expand All @@ -40,7 +40,7 @@ jobs:
needs:
- e2e_be
- e2e_fe_smoke
if: startsWith(github.ref_name , 'release/') && inputs.e2e
if: inputs.e2e
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_fe.yml@build
secrets: inherit
with:
Expand All @@ -55,7 +55,7 @@ jobs:
needs:
- e2e_be
- e2e_fe_smoke
if: startsWith(github.ref_name , 'release/') && inputs.e2e
if: inputs.e2e
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_fe.yml@build
secrets: inherit
with:
Expand Down

0 comments on commit faa43c5

Please sign in to comment.