Skip to content

Commit 5934f87

Browse files
authored
ci: only trigger on pushes to main branches (#97)
1 parent 85686c8 commit 5934f87

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
name: CI
2+
23
on:
34
push:
5+
branches:
6+
- main
7+
- master
8+
- next
9+
- 'v*'
410
paths-ignore:
5-
- docs/**
11+
- 'docs/**'
612
- '*.md'
713
pull_request:
814
paths-ignore:
9-
- docs/**
15+
- 'docs/**'
1016
- '*.md'
1117

1218
jobs:

0 commit comments

Comments
 (0)