Skip to content

Commit 1da9b3f

Browse files
ci: add path filters to workflows so docs/markdown changes do not trigger builds
1 parent 059877f commit 1da9b3f

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/release-latest.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ name: release-latest
1111
on:
1212
push:
1313
branches: ["master"]
14+
paths-ignore:
15+
- '**.md'
16+
- 'docs/**'
17+
- 'LICENSE'
18+
- '.gitignore'
19+
- 'index.html*'
20+
- '.well-known/**'
1421

1522
concurrency:
1623
group: release-latest

.github/workflows/test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,17 @@ name: test
88
on:
99
push:
1010
branches: ["master"]
11+
paths-ignore:
12+
- '**.md'
13+
- 'docs/**'
14+
- 'LICENSE'
15+
- '.gitignore'
1116
pull_request:
17+
paths-ignore:
18+
- '**.md'
19+
- 'docs/**'
20+
- 'LICENSE'
21+
- '.gitignore'
1222

1323
jobs:
1424
zig-test:

0 commit comments

Comments
 (0)