Skip to content

Commit c41b738

Browse files
fix: e2e testing workflow with orphaned e2e deployments (#381)
1 parent bbfcdc4 commit c41b738

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/e2e-tests-weekly.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
schedule:
99
- cron: '0 14 * * 1' # Every Monday at 9 AM EST (14:00 UTC)
1010

11+
concurrency:
12+
group: e2e-${{ github.event.pull_request.number || github.ref }}
13+
cancel-in-progress: false
14+
1115
permissions:
1216
id-token: write # OIDC — lets GitHub assume an AWS IAM role via short-lived token (no stored keys)
1317
contents: read

.github/workflows/e2e-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
pull_request_target:
99
branches: [main, feat/gateway-integration]
1010

11+
concurrency:
12+
group: e2e-${{ github.event.pull_request.number || github.ref }}
13+
cancel-in-progress: false
14+
1115
permissions:
1216
id-token: write # OIDC — lets GitHub assume an AWS IAM role via short-lived token (no stored keys)
1317
contents: read

0 commit comments

Comments
 (0)