Skip to content

Commit c28ca1f

Browse files
committed
chore: ignore pr actions for non code changes
1 parent f569d28 commit c28ca1f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/pkg.pr.new.yml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Publish Any Commit
22

33
on:
44
pull_request:
5+
# test only on code changes
6+
paths:
7+
- 'packages/*/src/**'
58
push:
69
branches:
710
- '**'

.github/workflows/tests.yml

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111
- cron: "0 0 * * SUN" # Run every 00:00 on Sunday
1212
workflow_dispatch:
1313
pull_request:
14+
# test only on code changes
15+
paths:
16+
- 'packages/*/src/**'
1417

1518

1619
jobs:

0 commit comments

Comments
 (0)