diff --git a/.github/workflows/e2e-couchdb.yml b/.github/workflows/e2e-couchdb.yml index cada516eb8..264cae4528 100644 --- a/.github/workflows/e2e-couchdb.yml +++ b/.github/workflows/e2e-couchdb.yml @@ -1,13 +1,17 @@ name: 'e2e-couchdb' on: + push: + branches: master workflow_dispatch: pull_request: types: - labeled - opened + schedule: + - cron: '0 0 * * *' jobs: e2e-couchdb: - if: github.event.label.name == 'pr:e2e:couchdb' || github.event.action == 'opened' && github.actor == 'dependabot[bot]' + if: contains(github.event.pull_request.labels.*.name, 'pr:e2e:couchdb') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event.action == 'opened' runs-on: ubuntu-latest timeout-minutes: 60 steps: diff --git a/.github/workflows/e2e-pr.yml b/.github/workflows/e2e-pr.yml index 0e4a8d9a9d..9e2ea8f711 100644 --- a/.github/workflows/e2e-pr.yml +++ b/.github/workflows/e2e-pr.yml @@ -1,13 +1,17 @@ name: 'e2e-pr' on: + push: + branches: master workflow_dispatch: pull_request: types: - labeled - opened + schedule: + - cron: '0 0 * * *' jobs: e2e-full: - if: github.event.label.name == 'pr:e2e' || github.event.action == 'opened' && github.actor == 'dependabot[bot]' + if: contains(github.event.pull_request.labels.*.name, 'pr:e2e') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' runs-on: ${{ matrix.os }} timeout-minutes: 60 strategy: diff --git a/.github/workflows/pr-platform.yml b/.github/workflows/pr-platform.yml index 1f1cdfbaa1..e6be244bd1 100644 --- a/.github/workflows/pr-platform.yml +++ b/.github/workflows/pr-platform.yml @@ -1,14 +1,17 @@ name: 'pr-platform' on: + push: + branches: master workflow_dispatch: pull_request: types: - labeled - opened - + schedule: + - cron: '0 0 * * *' jobs: pr-platform: - if: github.event.label.name == 'pr:platform' || github.event.action == 'opened' && github.actor == 'dependabot[bot]' + if: contains(github.event.pull_request.labels.*.name, 'pr:platform') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' runs-on: ${{ matrix.os }} timeout-minutes: 60 strategy: diff --git a/e2e/playwright-ci.config.js b/e2e/playwright-ci.config.js index 5335bde352..266ac4a3ab 100644 --- a/e2e/playwright-ci.config.js +++ b/e2e/playwright-ci.config.js @@ -77,7 +77,6 @@ const config = { } ], ['junit', { outputFile: '../test-results/results.xml' }], - ['github'], ['@deploysentinel/playwright'] ] };