Skip to content

Commit

Permalink
Update e2e.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiCanizales committed Oct 17, 2023
1 parent e535517 commit 047819f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: End to End Tests
on:
schedule:
- cron: 40 * * * *
- cron: 52 * * * *
workflow_dispatch:
inputs:
automationBranch:
Expand All @@ -28,21 +28,21 @@ on:
jobs:

Apex_E2E_tests:
if: ${{ github.event.inputs.apexE2ETests || github.event_name = 'schedule' }}
if: ${{ github.event.inputs.apexE2ETests || github.event_name == 'schedule' }}
uses: ./.github/workflows/apexE2E.yml
secrets: inherit
with:
automationBranch: ${{ github.event.inputs.automationBranch }}

Core_E2E_tests:
if: ${{ github.event.inputs.coreE2ETests } || github.event_name = 'schedule' }
if: ${{ github.event.inputs.coreE2ETests } || github.event_name == 'schedule' }
uses: ./.github/workflows/coreE2E.yml
secrets: inherit
with:
automationBranch: ${{ github.event.inputs.automationBranch }}

LSP_E2E_tests:
if: ${{ github.event.inputs.lspE2ETests || github.event_name = 'schedule' }}
if: ${{ github.event.inputs.lspE2ETests || github.event_name == 'schedule' }}
uses: ./.github/workflows/lspE2E.yml
secrets: inherit
with:
Expand Down

0 comments on commit 047819f

Please sign in to comment.