You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/smart-e2e-selection/action.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ inputs:
27
27
required: false
28
28
default: 'false'
29
29
base-ref:
30
-
description: 'PR base branch ref passed to the AI analysis script for diff comparison. When release/*, AI selection is skipped and the full E2E suite is selected.'
30
+
description: 'PR base branch ref passed to the AI analysis script for diff comparison. When release/* or stable, AI selection is skipped and the full E2E suite is selected.'
31
31
required: false
32
32
default: ''
33
33
outputs:
@@ -57,15 +57,15 @@ runs:
57
57
echo "⏭️ SKIP=true due to 'skip-smart-e2e-selection' label on PR"
58
58
fi
59
59
60
-
- name: Check release target branch (full E2E, no AI selection)
60
+
- name: Check release or stable target branch (full E2E, no AI selection)
61
61
id: check-release-target
62
62
shell: bash
63
63
run: |
64
64
echo "SKIP=false" >> "$GITHUB_OUTPUT"
65
65
BASE='${{ inputs.base-ref }}'
66
-
if [[ -n "$BASE" && "$BASE" == release/* ]]; then
66
+
if [[ -n "$BASE" && ( "$BASE" == release/* || "$BASE" == "stable" ) ]]; then
67
67
echo "SKIP=true" >> "$GITHUB_OUTPUT"
68
-
echo "⏭️ Base branch is release/* — skipping AI E2E selection; full E2E suite will run"
68
+
echo "⏭️ Base branch is release/* or stable — skipping AI E2E selection; full E2E suite will run"
it('pops Card.ROOT off the root navigator on successful login when postAuthRedirect is set (no inner Card-stack reset, no cross-stack navigate)',async()=>{
0 commit comments