From 77c3efa6b1c7cc7269ba544d4ceaf1a37db32473 Mon Sep 17 00:00:00 2001 From: Martin Grigorov Date: Mon, 11 Dec 2023 15:27:07 +0200 Subject: [PATCH] Fix action/labeler to work with v5 (#2634) Signed-off-by: Martin Tzvetanov Grigorov --- .github/labeler.yml | 48 +++++++++++++++++++++++++++++++++------------ lang/rust/README.md | 1 - 2 files changed, 36 insertions(+), 13 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index ae59a356e43..d694c7e6d65 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -18,15 +18,39 @@ # # Pull Request Labeler Github Action Configuration: https://github.com/marketplace/actions/labeler -C: ["lang/c/**/*"] -C++: ["lang/c++/**/*"] -C#: ["lang/csharp/**/*"] -Java: ["lang/java/**/*"] -Js: ["lang/js/**/*"] -Perl: ["lang/perl/**/*"] -Php: ["lang/php/**/*"] -Python: ["lang/py/**/*"] -Ruby: ["lang/ruby/**/*"] -Rust: ["lang/rust/**/*"] -build: ["**/*Dockerfile*", "**/*.sh", "**/*pom.xml", ".github/**/*"] -website: ["doc/**/*"] +C: + - changed-files: + - any-glob-to-any-file: "lang/c/**/*" +C++: + - changed-files: + - any-glob-to-any-file: "lang/c++/**/*" +C#: + - changed-files: + - any-glob-to-any-file: "lang/csharp/**/*" +Java: + - changed-files: + - any-glob-to-any-file: "lang/java/**/*" +Js: + - changed-files: + - any-glob-to-any-file: "lang/js/**/*" +Perl: + - changed-files: + - any-glob-to-any-file: "lang/perl/**/*" +Php: + - changed-files: + - any-glob-to-any-file: "lang/php/**/*" +Python: + - changed-files: + - any-glob-to-any-file: "lang/py/**/*" +Ruby: + - changed-files: + - any-glob-to-any-file: "lang/ruby/**/*" +Rust: + - changed-files: + - any-glob-to-any-file: "lang/rust/**/*" +build: + - changed-files: + - any-glob-to-any-file: ["**/*Dockerfile*", "**/*.sh", "**/*pom.xml", ".github/**/*"] +website: + - changed-files: + - any-glob-to-any-file: "doc/**/*" diff --git a/lang/rust/README.md b/lang/rust/README.md index 199154393d3..af3c70fa934 100644 --- a/lang/rust/README.md +++ b/lang/rust/README.md @@ -38,4 +38,3 @@ See [avro_test_helper/README.md](./avro_test_helper/README.md) ## WebAssembly demo application See [wasm-demo/README.md](./wasm-demo/README.md) -