Skip to content

Commit 7851015

Browse files
authored
Run CI and Lint workflows on PRs to any branch (#2180)
Problem: The single * wasn't matching all possible branch names Solution: Use globstar to match all kind of names
1 parent d540f36 commit 7851015

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- "v[0-9]+.[0-9]+.[0-9]+*"
1010
pull_request:
1111
branches:
12-
- "*"
12+
- "**"
1313
schedule:
1414
- cron: "0 4 * * *" # run every day at 4am UTC
1515

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77
pull_request:
88
branches:
9-
- "*"
9+
- "**"
1010

1111
defaults:
1212
run:

0 commit comments

Comments
 (0)