Skip to content

Commit 4780f80

Browse files
committed
minor #1455 [CI] Fix RST Linter triggers (smnandre)
This PR was merged into the 2.x branch. Discussion ---------- [CI] Fix RST Linter triggers (avoid running it 40x a day when no doc files have been changed) Commits ------- a8235fb [CI] Fix RST Linter triggers
2 parents 33c66f3 + a8235fb commit 4780f80

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/doctor-rst.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ name: RST Linter
22

33
on:
44
push:
5-
paths-ignore:
6-
- 'ux.symfony.com/**'
5+
paths:
6+
- '**.rst'
7+
- 'src/*/doc/**'
78
pull_request:
8-
paths-ignore:
9-
- 'ux.symfony.com/**'
9+
paths:
10+
- '**.rst'
11+
- 'src/*/doc/**'
1012

1113
jobs:
1214
doctor-rst:

0 commit comments

Comments
 (0)