This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/main by this push:
     new b4f08c730c Update labeler configuration to include `avro` and 
`parquet-variant` … (#8109)
b4f08c730c is described below

commit b4f08c730c7329fc5f507994a148a48674652fa8
Author: Andrew Lamb <[email protected]>
AuthorDate: Tue Aug 12 11:08:22 2025 -0700

    Update labeler configuration to include `avro` and `parquet-variant` … 
(#8109)
    
    As we are adding non trivial code to these crates, it would be nice to
    get the PRs labeled more nicely
    
    Thus let's mark the PRs automatically with tags
    -
    
https://github.com/apache/arrow-rs/issues/labels?q=state%3Aopen%20label%3Aparquet-variant
    -
    
https://github.com/apache/arrow-rs/issues/labels?q=state%3Aopen%20label%3Aavro
---
 .github/workflows/dev_pr/labeler.yml | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/dev_pr/labeler.yml 
b/.github/workflows/dev_pr/labeler.yml
index 64299bd507..edb6d03617 100644
--- a/.github/workflows/dev_pr/labeler.yml
+++ b/.github/workflows/dev_pr/labeler.yml
@@ -37,6 +37,11 @@ arrow:
       - 'arrow-string/**/*'
       - 'arrow/**/*'
 
+arrow-avro:
+  - changed-files:
+      - any-glob-to-any-file:
+          - 'arrow-avro/**/*'
+
 arrow-flight:
   - changed-files:
     - any-glob-to-any-file:
@@ -46,7 +51,13 @@ parquet:
   - changed-files:
     - any-glob-to-any-file:
       - 'parquet/**/*'
-      - 'parquet-variant/**/*'
+
+parquet-variant:
+  - changed-files:
+      - any-glob-to-any-file:
+          - 'parquet-variant/**/*'
+          - 'parquet-variant-compute/**/*'
+          - 'parquet-variant-json/**/*'
 
 parquet-derive:
   - changed-files:

Reply via email to