From f9ea2100d40a1f10eebe0bb2ea93d3ab1ee1026e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 21 Jul 2022 12:43:09 +0200 Subject: Fix: Also consider rust changed if Cargo.lock changes This patch adds the "Cargo.lock" file to the filters in the github-action setup, so that if dependabot updates a dependency, but only the "Cargo.lock" file got changed, the CI is triggered for a full build. Suggested-by: PradeepKiruvale Signed-off-by: Matthias Beyer Signed-off-by: Rina Fujino <18257209+rina23q@users.noreply.github.com> --- .github/workflows/pull-request-checks.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github') diff --git a/.github/workflows/pull-request-checks.yml b/.github/workflows/pull-request-checks.yml index 327d968c..32da5125 100644 --- a/.github/workflows/pull-request-checks.yml +++ b/.github/workflows/pull-request-checks.yml @@ -41,6 +41,7 @@ jobs: rust: - 'crates/**' - 'plugins/**' + - 'Cargo.*' workflows: - '.github/workflows/**' -- cgit v1.2.3