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 6856c5d commit e535517
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: End to End Tests
on:
schedule:
- cron: 40 * * * *
workflow_dispatch:
inputs:
automationBranch:
Expand All @@ -26,22 +28,22 @@ on:
jobs:

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

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

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

0 comments on commit e535517

Please sign in to comment.