Skip to content

Commit b43d167

Browse files
committed
Fix(workflows/main.yml): reduce triggering range
Author: Ziyuan Chen (Simon Chen) Date: 2023.09.04 Description: - Don't trigger the workflow when modifying the 'doc/' or 'docs/' folder
1 parent 4331adf commit b43d167

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ name: CI
77
on:
88
push:
99
branches: [ dev ]
10+
paths-ignore:
11+
- 'doc/**' # Ignore all files and subdirectories under "doc/"
12+
- 'docs/**' # Ignore all files and subdirectories under "docs/"
1013
#pull_request:
1114
# branches: [ dev ]
1215

0 commit comments

Comments
 (0)