Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/e2e_tests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
name: Playwright Tests

# Pinned to `v1/main`, this branch's own base. These filters read `main`
# historically, from when the v1 line was itself `main` — which meant they
# matched nothing here and the suite silently never ran on this branch.
# See #2065.
on:
push:
branches: [main]
branches: [v1/main]
pull_request:
branches: [main]
branches: [v1/main]

jobs:
test:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# `v1/main` is the deprecated maintenance line: it publishes straight from this
# branch to the `v1-latest` dist-tag and never merges into `main`, which now
# carries v2. Keep these filters pinned to `v1/main` — a stale `main` entry here
# describes a topology that no longer exists, and would start matching the moment
# anything put a v1-shaped tree back on that branch.
#
# (For `push`, GitHub runs the workflow file from the pushed commit, so this file
# is only ever consulted for `v1/main` regardless. The filter states intent.)
on:
push:
branches:
- main
- v1/main
pull_request:
branches:
- v1/main
release:
types: [published]

Expand Down
Loading