We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7210ca3 commit 2ae0820Copy full SHA for 2ae0820
1 file changed
.github/workflows/branch-e2e.yml
@@ -46,9 +46,12 @@ jobs:
46
run_kubernetes_ha_e2e="$(jq -r 'index("test:e2e-kubernetes") != null' <<< "$LABELS_JSON")"
47
;;
48
merge_group)
49
+ # Merge groups have no PR labels. If GPU E2E skips, its required gate
50
+ # stays pending until the queue times out and ejects the PR. HA stays
51
+ # off until stable.
52
run_core_e2e=true
- run_gpu_e2e="$(jq -r 'index("test:e2e-gpu") != null' <<< "$LABELS_JSON")"
- run_kubernetes_ha_e2e="$(jq -r 'index("test:e2e-kubernetes") != null' <<< "$LABELS_JSON")"
53
+ run_gpu_e2e=true
54
+ run_kubernetes_ha_e2e=false
55
56
*)
57
0 commit comments