This is an automated email from the ASF dual-hosted git repository.
Jefffrey 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 23e61b694f chore: add sub tags (#10473)
23e61b694f is described below
commit 23e61b694f601db93dfa89bc7488e412cf1bbe07
Author: RIchard Baah <[email protected]>
AuthorDate: Thu Jul 30 18:09:51 2026 -0400
chore: add sub tags (#10473)
# Which issue does this PR close?
<!--
We generally require a GitHub issue to be filed for all bug fixes and
enhancements and this helps us generate change logs for our releases.
You can link an issue to this PR using the GitHub syntax.
-->
- Closes #10435.
# Rationale for this change
see
https://github.com/apache/arrow-rs/issues/10435#issuecomment-5110170539
<!--
Why are you proposing this change? If this is already explained clearly
in the issue then this section is not needed.
Explaining clearly why changes are proposed helps reviewers understand
your changes and offer better suggestions for fixes.
-->
# What changes are included in this PR?
adds sub tags for each crate touched in a PR
<!--
There is no need to duplicate the description in the issue here but it
is sometimes worth providing a summary of the individual changes in this
PR.
-->
# Are these changes tested?
This PR serves as a test
<!--
We typically require tests for all PRs in order to:
1. Prevent the code from being accidentally broken by subsequent changes
2. Serve as another way to document the expected behavior of the code
If tests are not included in your PR, please explain why (for example,
are they covered by existing tests)?
If this PR claims a performance improvement, please include evidence
such as benchmark results.
-->
# Are there any user-facing changes?
yes, contributers will have an easier time finding issues/PR's in crates
they are interested in through github search
<!--
If there are user-facing changes then we may require documentation to be
updated before approving the PR.
If there are any breaking changes to public APIs, please call them out.
-->
---------
Co-authored-by: rich-T-kid <[email protected]>
---
.github/workflows/dev_pr/labeler.yml | 135 ++++++++++++++++++++++++++++-------
1 file changed, 110 insertions(+), 25 deletions(-)
diff --git a/.github/workflows/dev_pr/labeler.yml
b/.github/workflows/dev_pr/labeler.yml
index edb6d03617..d66c29a185 100644
--- a/.github/workflows/dev_pr/labeler.yml
+++ b/.github/workflows/dev_pr/labeler.yml
@@ -18,47 +18,132 @@
arrow:
- changed-files:
- any-glob-to-any-file:
- - 'arrow-arith/**/*'
- - 'arrow-array/**/*'
- - 'arrow-buffer/**/*'
- - 'arrow-cast/**/*'
- - 'arrow-csv/**/*'
- - 'arrow-data/**/*'
- - 'arrow-flight/**/*'
- - 'arrow-integration-test/**/*'
- - 'arrow-integration-testing/**/*'
- - 'arrow-ipc/**/*'
- - 'arrow-json/**/*'
- - 'arrow-avro/**/*'
- - 'arrow-ord/**/*'
- - 'arrow-row/**/*'
- - 'arrow-schema/**/*'
- - 'arrow-select/**/*'
- - 'arrow-string/**/*'
- - 'arrow/**/*'
+ - "arrow-arith/**/*"
+ - "arrow-array/**/*"
+ - "arrow-buffer/**/*"
+ - "arrow-cast/**/*"
+ - "arrow-csv/**/*"
+ - "arrow-data/**/*"
+ - "arrow-flight/**/*"
+ - "arrow-integration-test/**/*"
+ - "arrow-integration-testing/**/*"
+ - "arrow-ipc/**/*"
+ - "arrow-json/**/*"
+ - "arrow-avro/**/*"
+ - "arrow-ord/**/*"
+ - "arrow-row/**/*"
+ - "arrow-schema/**/*"
+ - "arrow-select/**/*"
+ - "arrow-string/**/*"
+ - "arrow/**/*"
arrow-avro:
- changed-files:
- any-glob-to-any-file:
- - 'arrow-avro/**/*'
+ - "arrow-avro/**/*"
arrow-flight:
- changed-files:
- any-glob-to-any-file:
- - 'arrow-flight/**/*'
+ - "arrow-flight/**/*"
parquet:
- changed-files:
- any-glob-to-any-file:
- - 'parquet/**/*'
+ - "parquet/**/*"
parquet-variant:
- changed-files:
- any-glob-to-any-file:
- - 'parquet-variant/**/*'
- - 'parquet-variant-compute/**/*'
- - 'parquet-variant-json/**/*'
+ - "parquet-variant/**/*"
+ - "parquet-variant-compute/**/*"
+ - "parquet-variant-json/**/*"
parquet-derive:
- changed-files:
- - any-glob-to-any-file: [ 'parquet_derive/**/*' ]
+ - any-glob-to-any-file:
+ - "parquet_derive/**/*"
+ - "parquet_derive_test/**/*"
+
+parquet-geospatial:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "parquet-geospatial/**/*"
+
+arrow-arith:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-arith/**/*"
+
+arrow-array:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-array/**/*"
+
+arrow-buffer:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-buffer/**/*"
+
+arrow-cast:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-cast/**/*"
+
+arrow-csv:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-csv/**/*"
+
+arrow-data:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-data/**/*"
+
+arrow-integration-test:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-integration-test/**/*"
+ - "arrow-integration-testing/**/*"
+
+arrow-ipc:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-ipc/**/*"
+
+arrow-json:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-json/**/*"
+
+arrow-ord:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-ord/**/*"
+
+arrow-pyarrow:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-pyarrow/**/*"
+ - "arrow-pyarrow-testing/**/*"
+ - "arrow-pyarrow-integration-testing/**/*"
+
+arrow-row:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-row/**/*"
+
+arrow-schema:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-schema/**/*"
+
+arrow-select:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-select/**/*"
+
+arrow-string:
+ - changed-files:
+ - any-glob-to-any-file:
+ - "arrow-string/**/*"