Remove filter from "check-deps" command (#523)

* Remove filter from "check-deps" command

* ci: 👷 only run check-deps on label
This commit is contained in:
Adrian Pilarczyk 2023-06-01 15:12:04 +02:00 committed by GitHub
parent 182bdd6b32
commit 6a9da7ac38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -7,6 +7,7 @@ on:
- main
jobs:
syncpack:
if: contains(github.event.pull_request.labels.*.name, 'check dependencies')
runs-on: ubuntu-latest
name: Check dependencies
steps:

View file

@ -17,7 +17,7 @@
"generate": "turbo run generate",
"prepare": "husky install",
"github:release": "pnpm changeset tag && git push --follow-tags",
"check-deps": "syncpack fix-mismatches --source \"apps/*/package.json\" --source \"packages/*/package.json\" --filter \"@saleor/app-sdk|@saleor/macaw-ui\""
"check-deps": "syncpack fix-mismatches --source \"apps/*/package.json\" --source \"packages/*/package.json\""
},
"devDependencies": {
"@changesets/cli": "^2.26.0",