Skip to content

Commit 88fef9a

Browse files
committed
chore: filter workflows paths
1 parent 36ae9f9 commit 88fef9a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/deploy-website.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Website
22

33
on:
44
push:
5-
branches:
6-
- main
5+
branches: [main]
6+
paths: ['website/**']
77

88
jobs:
99
deploy:

.github/workflows/example-apps.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ name: Validate Example Apps
33
on:
44
push:
55
branches: [main]
6+
paths: ['examples/**']
67
pull_request:
78
branches: ['**']
9+
paths: ['examples/**']
810

911
jobs:
1012
test-example:

0 commit comments

Comments
 (0)