Skip to content

Commit aaa8ca7

Browse files
committed
Limit workflow runs to paths which change in the packages directory
1 parent a6ac853 commit aaa8ca7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/standalone_push_changes.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ on:
2424
push:
2525
branches:
2626
- develop
27+
paths:
28+
# List paths for which changes should trigger this workflow:
29+
- 'lib/node_modules/@stdlib/**'
30+
31+
# List paths for which changes should *not* trigger this workflow:
32+
- '!lib/node_modules/@stdlib/_tools/**'
2733

2834
# Workflow jobs:
2935
jobs:

0 commit comments

Comments
 (0)