Skip to content

Commit 57c2502

Browse files
tanemclaude
andcommitted
Run CI on v* branches
Both the push and pull_request filters were limited to master, so commits pushed to a version branch such as v7 ran no CI. Using [master, 'v*'] covers future majors without a further edit. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent fd805e3 commit 57c2502

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [master, 'v*']
66
pull_request:
7-
branches: [master]
7+
branches: [master, 'v*']
88

99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

0 commit comments

Comments
 (0)