Skip to content

Commit a0ede80

Browse files
authored
github: backport suppress running CI only for documentation (#4608)
For updating documentation or release task, running GitHub Actions is waste of resource. https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore Signed-off-by: Kentaro Hayashi <[email protected]>
1 parent a9b9a2e commit a0ede80

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ name: Test
33
on:
44
push:
55
branches: [v1.16]
6+
paths-ignore:
7+
- '*.md'
8+
- 'lib/fluent/version.rb'
69
pull_request:
710
branches: [v1.16]
11+
paths-ignore:
12+
- '*.md'
13+
- 'lib/fluent/version.rb'
814

915
jobs:
1016
test:

0 commit comments

Comments
 (0)