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 5ff95ba commit 801e7acCopy full SHA for 801e7ac
1 file changed
.github/workflows/e2e.yml
@@ -2,7 +2,7 @@ name: E2E Tests
2
3
on:
4
pull_request:
5
- branches: '*'
+ branches: [main, next]
6
7
jobs:
8
run-tests:
@@ -31,10 +31,10 @@ jobs:
31
run: |
32
# Fetch the base branch
33
git fetch origin ${{ github.event.pull_request.base.ref }}
34
-
+
35
# Get list of changed files
36
CHANGED_FILES=$(git diff --name-only origin/${{ github.event.pull_request.base.ref }})
37
38
# Check if any changed files are outside sites/docs/
39
NON_DOCS_CHANGES=$(echo "$CHANGED_FILES" | grep -vE '^sites/docs/' || true)
40
0 commit comments