From 6a9da7ac385a97741edc8de442408a7771ffd73c Mon Sep 17 00:00:00 2001 From: Adrian Pilarczyk Date: Thu, 1 Jun 2023 15:12:04 +0200 Subject: [PATCH] Remove filter from "check-deps" command (#523) * Remove filter from "check-deps" command * ci: :construction_worker: only run check-deps on label --- .github/workflows/check-deps.yml | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-deps.yml b/.github/workflows/check-deps.yml index 3348cdf..05592fd 100644 --- a/.github/workflows/check-deps.yml +++ b/.github/workflows/check-deps.yml @@ -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: diff --git a/package.json b/package.json index 29bd05d..9d90bb7 100644 --- a/package.json +++ b/package.json @@ -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",