summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@ifm.com>2022-07-21 12:43:09 +0200
committerRina Fujino <18257209+rina23q@users.noreply.github.com>2022-07-21 13:15:09 +0200
commitf9ea2100d40a1f10eebe0bb2ea93d3ab1ee1026e (patch)
tree5f68e1bfee94a45dcc19da269d24671b3a185f7a /.github
parent4ee86f1a53f682214603ab5bf8bf8bedd63319b7 (diff)
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 <pradeepkumar.kj@softwareag.com> Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com> Signed-off-by: Rina Fujino <18257209+rina23q@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pull-request-checks.yml1
1 files changed, 1 insertions, 0 deletions
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/**'