Skip to content

Commit c173316

Browse files
authored
Merge pull request #4017 from crazy-max/fix-ci-events
ci: fix branch filter pattern
2 parents 24b4924 + 0f39598 commit c173316

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
push:
1010
branches:
1111
- 'master'
12-
- '[0-9]+.[0-9]{2}'
12+
- '[0-9]+.[0-9]+'
1313
tags:
1414
- 'v*'
1515
pull_request:

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
push:
1010
branches:
1111
- 'master'
12-
- '[0-9]+.[0-9]{2}'
12+
- '[0-9]+.[0-9]+'
1313
tags:
1414
- 'v*'
1515
pull_request:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
push:
1010
branches:
1111
- 'master'
12-
- '[0-9]+.[0-9]{2}'
12+
- '[0-9]+.[0-9]+'
1313
tags:
1414
- 'v*'
1515
pull_request:

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
push:
1010
branches:
1111
- 'master'
12-
- '[0-9]+.[0-9]{2}'
12+
- '[0-9]+.[0-9]+'
1313
tags:
1414
- 'v*'
1515
pull_request:

0 commit comments

Comments
 (0)