Skip to content

Commit abfaafb

Browse files
committed
CI: Don't run test and release jobs on doc changes (#174)
1 parent c635013 commit abfaafb

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
name: Build and Test
55
on:
66
push:
7+
paths-ignore: ['docs/**', '**.rst', '**.md']
78
pull_request:
9+
paths-ignore: ['docs/**', '**.rst', '**.md']
810
workflow_dispatch:
911
schedule:
1012
- cron: '0 6 * * 1'

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: Build distribution
22
on:
33
push:
4+
paths-ignore: ['docs/**', '**.rst', '**.md']
45
pull_request:
6+
paths-ignore: ['docs/**', '**.rst', '**.md']
57
workflow_dispatch:
68
schedule:
79
- cron: '0 6 * * 1'

0 commit comments

Comments
 (0)