From 5921ffa3c294113fa99651c1f8be03de53473b00 Mon Sep 17 00:00:00 2001 From: Harrison Weinstock Date: Fri, 20 Mar 2026 13:50:25 +0000 Subject: [PATCH] ci: run full e2e suite on every push to main --- .../workflows/{e2e-tests-weekly.yml => e2e-tests-full.yml} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename .github/workflows/{e2e-tests-weekly.yml => e2e-tests-full.yml} (97%) diff --git a/.github/workflows/e2e-tests-weekly.yml b/.github/workflows/e2e-tests-full.yml similarity index 97% rename from .github/workflows/e2e-tests-weekly.yml rename to .github/workflows/e2e-tests-full.yml index 35786f39..be8a8d5f 100644 --- a/.github/workflows/e2e-tests-weekly.yml +++ b/.github/workflows/e2e-tests-full.yml @@ -1,4 +1,4 @@ -name: E2E Tests (Weekly Full Suite) +name: E2E Tests (Full Suite) on: workflow_dispatch: inputs: @@ -7,6 +7,8 @@ on: default: 'us-east-1' schedule: - cron: '0 14 * * 1' # Every Monday at 9 AM EST (14:00 UTC) + push: + branches: [main] concurrency: group: e2e-${{ github.event.pull_request.number || github.ref }}