From d7dd472b415bca5d2fe606b2f56fccaf4fb38cb5 Mon Sep 17 00:00:00 2001 From: Martin Landa Date: Wed, 14 Feb 2024 17:57:01 +0100 Subject: [PATCH 1/3] CI labeling: add support for testsuite label --- .github/labeler.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index d69558da359..d2b8aaa0e1a 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -101,7 +101,7 @@ Linux: - changed-files: - any-glob-to-any-file: - singularity/** - - rpm/** + - rpm/** docker: - changed-files: - any-glob-to-any-file: @@ -131,7 +131,7 @@ docs: - '!doc/development/rfc/**' RFC: - changed-files: - - any-glob-to-any-file: + - any-glob-to-any-file: - doc/development/rfc/** translation: - changed-files: @@ -140,7 +140,7 @@ translation: # based on file types Python: - changed-files: - - any-glob-to-any-file: + - any-glob-to-any-file: - '**/*.py' - '**/pyproject.toml' C: @@ -158,3 +158,9 @@ HTML: JavaScript: - changed-files: - any-glob-to-any-file: '**/*.js' + +# test suite +testsuite: + - changed-files: + - any-glob-to-any-file: + - */*/testsuite/** From b7856869881549e4dc5850c844f64592baee6c03 Mon Sep 17 00:00:00 2001 From: Martin Landa Date: Wed, 14 Feb 2024 21:31:41 +0100 Subject: [PATCH 2/3] testsuite -> tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Edouard Choinière <27212526+echoix@users.noreply.github.com> --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index d2b8aaa0e1a..80407934fda 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -160,7 +160,7 @@ JavaScript: - any-glob-to-any-file: '**/*.js' # test suite -testsuite: +tests: - changed-files: - any-glob-to-any-file: - */*/testsuite/** From 18a79a4e16f70d924d4b5f137f3246bc5acfd4b0 Mon Sep 17 00:00:00 2001 From: Martin Landa Date: Wed, 14 Feb 2024 21:32:18 +0100 Subject: [PATCH 3/3] Fix syntax MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Edouard Choinière <27212526+echoix@users.noreply.github.com> --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 80407934fda..5890b15d616 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -163,4 +163,4 @@ JavaScript: tests: - changed-files: - any-glob-to-any-file: - - */*/testsuite/** + - '**/testsuite/**'