Skip to content

Commit c8da41d

Browse files
authored
UN-2749 [MISC]: Add path ignore patterns to CI workflow (#1502)
[FEAT] Add path ignore patterns to CI workflow Skip CI runs for changes to docker/, frontend/, and docs/ directories to optimize CI resource usage and reduce unnecessary test runs.
1 parent f3b484e commit c8da41d

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/ci-test.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ on:
44
push:
55
branches:
66
- main
7+
paths-ignore:
8+
- 'docker/**'
9+
- 'frontend/**'
10+
- 'docs/**'
711
pull_request:
812
types: [opened, synchronize, reopened, ready_for_review]
913
branches: [main]
14+
paths-ignore:
15+
- 'docker/**'
16+
- 'frontend/**'
17+
- 'docs/**'
1018

1119
jobs:
1220
test:

0 commit comments

Comments
 (0)