Skip to content

Commit c9943a0

Browse files
committed
chore: Run release from 12.x branch
1 parent 9e2b5db commit c9943a0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/validate.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: validate
22
on:
33
push:
44
branches:
5-
- '+([0-9])?(.{+([0-9]),x}).x'
5+
# Match SemVer major release branches
6+
# e.g. "12.x" or "8.x"
7+
- '[0-9]+.x'
68
- 'main'
79
- 'next'
810
- 'next-major'
@@ -58,8 +60,7 @@ jobs:
5860
runs-on: ubuntu-latest
5961
if:
6062
${{ github.repository == 'testing-library/react-testing-library' &&
61-
contains('refs/heads/main,refs/heads/beta,refs/heads/next,refs/heads/alpha',
62-
github.ref) && github.event_name == 'push' }}
63+
github.event_name == 'push' }}
6364
steps:
6465
- name: 🛑 Cancel Previous Runs
6566
uses: styfle/[email protected]

0 commit comments

Comments
 (0)