From 17ae48decc9101beaa850e1208ea067ed0da26c3 Mon Sep 17 00:00:00 2001 From: mustiikhalil Date: Thu, 29 Oct 2020 09:05:25 +0300 Subject: [PATCH] [Label Bot] Adds some languages to labeler bot (#6222) * Adds swift, ts, go, py to labeler bot * Removes unneeded dir search --- .github/labeler.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/labeler.yml b/.github/labeler.yml index e96062444..d0cfc497b 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -11,3 +11,25 @@ c#: - tests/FlatBuffers.Test/**/* - tests/FlatBuffers.Benchmarks/**/* - src/idl_gen_csharp.cpp + +swift: + - ./**/*.swift + - swift/**/* + - tests/FlatBuffers.GRPC.Swift/**/* + - tests/FlatBuffers.Benchmarks.swift/**/* + - tests/FlatBuffers.Test.Swift/**/* + - src/idl_gen_swift.cpp + - grpc/**/*swift* + +typescript: + - ./**/*.ts + - src/idl_gen_js_ts.cpp + - grpc/flatbuffers-js-grpc/**/*.ts + +golang: + - ./**/*.go + - src/idl_gen_go.cpp + +python: + - ./**/*.py + - src/idl_gen_python.cpp \ No newline at end of file