This is an automated email from the ASF dual-hosted git repository. mgrigorov pushed a commit to branch fix-labeler-action in repository https://gitbox.apache.org/repos/asf/avro.git
commit 75c663b3f63e5f5fb0ce0f2f19ae86293858de55 Author: Martin Tzvetanov Grigorov <[email protected]> AuthorDate: Mon Dec 11 15:16:24 2023 +0200 Fix action/labeler to work with v5 Signed-off-by: Martin Tzvetanov Grigorov <[email protected]> --- .github/labeler.yml | 47 +++++++++++++++++++++++++++++++++++------------ lang/rust/README.md | 1 + 2 files changed, 36 insertions(+), 12 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index ae59a356e..c5b3bbf6b 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -18,15 +18,38 @@ # # 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 199154393..3f7fd5ceb 100644 --- a/lang/rust/README.md +++ b/lang/rust/README.md @@ -39,3 +39,4 @@ See [avro_test_helper/README.md](./avro_test_helper/README.md) See [wasm-demo/README.md](./wasm-demo/README.md) +TEST LABELER action \ No newline at end of file
