From 6f8cdb036da53b33fa6972b4b54a2ed9e6e21359 Mon Sep 17 00:00:00 2001 From: Gregor MacLennan Date: Wed, 23 Oct 2024 09:51:48 +0100 Subject: [PATCH] chore: remove paths filter for lockfile workflow The "Check Lockfile" workflow had a paths filter in the trigger, to only run when package-lock.json is modified. Unfortunately there is an edge-case, where package-lock.json is modified, and the lockfile changes check posts a comment, and then the package-lock.json changes are reverted, but the lockfile changes check does not run again, because now the PR has not updates to `package-lock.json`. This workflow is very fast compared with the other checks in the repo, so I think it's ok to run for every PR sync event. --- .github/workflows/lockfile.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/lockfile.yml b/.github/workflows/lockfile.yml index 524d2c63d..5c72c729c 100644 --- a/.github/workflows/lockfile.yml +++ b/.github/workflows/lockfile.yml @@ -1,8 +1,6 @@ name: Check Lockfile on: pull_request: - paths: - - 'package-lock.json' jobs: lockfile_version: