Skip to content

Commit

Permalink
Fix action/labeler to work with v5 (#2634)
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
  • Loading branch information
martin-g authored Dec 11, 2023
1 parent 27a67cc commit 77c3efa
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 13 deletions.
48 changes: 36 additions & 12 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/**/*"
1 change: 0 additions & 1 deletion lang/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 77c3efa

Please sign in to comment.