From f7821b314df9b4f5e99ca7b3b96237d56f437fc4 Mon Sep 17 00:00:00 2001 From: Michael Tautschnig Date: Thu, 7 Dec 2023 16:13:50 +0000 Subject: [PATCH] Updated labeler GitHub action configuration to v5 format When merging #2917 I overlooked the note that the configuration file format had changed. --- .github/labeler.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index ec81f0aa15cc..1195ee4a14d2 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -6,11 +6,8 @@ # Note that we enable dot, so "**" matches all files in a folder Z-BenchCI: - - kani-compiler/** - - rust-toolchain.toml - - kani-dependencies - - kani-driver/src/call-* - - Cargo.lock - - cprover_bindings/** - - library/** - +- any: + - changed-files: + - any-glob-to-any-file: ['kani-compiler/**', 'kani-driver/src/call-*', 'cprover_bindings/**', 'library/**'] + - any-glob-to-any-file: ['rust-toolchain.toml', 'Cargo.lock'] + - any-glob-to-any-file: ['kani-dependencies']