Skip to content

Commit a3cd229

Browse files
fix: prevent Prettier workflow from running on lock file changes (sanity-io#176)
* docs: update Next.js 15 → 16 reference in README * fix: prevent Prettier workflow from running on lock file changes
1 parent b6285db commit a3cd229

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/prettier.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ name: Prettier
33
on:
44
push:
55
branches: [main, feat/ci-renovate-prettier]
6+
paths-ignore:
7+
- 'package-lock.json'
8+
- '**/package-lock.json'
9+
- 'yarn.lock'
10+
- '**/yarn.lock'
11+
- 'pnpm-lock.yaml'
12+
- '**/pnpm-lock.yaml'
613
workflow_dispatch:
714

815
concurrency:

0 commit comments

Comments
 (0)