From f9cf500a69543326699c6d72efdf67560318d469 Mon Sep 17 00:00:00 2001 From: Abhishek Radhakrishnan Date: Thu, 7 Sep 2023 20:25:37 -0700 Subject: [PATCH] Extend GHA autolabeler to other areas (#14903) * Automate adding labels. * Add metrics/event emitting label * ingestion and segment format --- .github/labeler.yml | 51 ++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 46 insertions(+), 5 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index b669a83dc5b..e463e80008e 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -18,9 +18,50 @@ # # -# Pull Request Labeler Github Action Configuration: https://github.com/marketplace/actions/labeler +# Pull Request Labeler GitHub Action Configuration: https://github.com/marketplace/actions/labeler -"Area - Documentation": - - "docs/**/*" - - "website/**" - - "examples/quickstart/jupyter-notebooks/**" \ No newline at end of file +'Area - Batch Ingestion': + - 'indexing-hadoop/**' + - 'extensions-core/multi-stage-query/**' + +'Area - Dependencies': + - '**/pom.xml' + - 'licenses.yaml' + +'Area - Documentation': + - 'docs/**/*' + - 'website/**' + - 'examples/quickstart/jupyter-notebooks/**' + +'Area - Ingestion': + - 'processing/**' + - 'indexing-service/**' + +'Area - Lookups': + - 'extensions-core/lookups-cached-global/**' + - 'extensions-core/lookups-cached-single/**' + - 'extensions-core/kafka-extraction-namespace/**' + +'Area - Metrics/Event Emitting': + - 'processing/src/main/java/org/apache/druid/java/util/metrics/**' + - 'processing/src/main/java/org/apache/druid/java/util/emitter/**' + - 'extensions-contrib/*-emitter/**' + +'Area - Querying': + - 'sql/**' + +'Area - Segment Format and Ser/De': + - 'processing/src/main/java/org/apache/druid/segment/**' + +'Area - Streaming Ingestion': + - 'extensions-core/kafka-indexing-service/**' + - 'extensions-core/kinesis-indexing-service/**' + +'Area - Web Console': + - 'web-console/**' + +'Kubernetes': + - 'extensions-contrib/kubernetes-overlord-extensions/**' + +'MSQ': + - 'extensions-core/multi-stage-query/**'