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 639b5bb93e chore(dependabot): explicitly include root workspace and 
arrow-pyarrow-integration-testing (#7673)
639b5bb93e is described below

commit 639b5bb93e5a152a437b93a25ead8095a3866a9b
Author: Matthijs Brobbel <[email protected]>
AuthorDate: Mon Jun 16 19:58:56 2025 +0200

    chore(dependabot): explicitly include root workspace and 
arrow-pyarrow-integration-testing (#7673)
    
    # Which issue does this PR close?
    
    The attempt in #7672 to include `arrow-pyarrow-integration-testing`
    using a wildcard did not work:
    
https://github.com/apache/arrow-rs/actions/runs/15678211946/job/44163362777#step:3:6376
    
    # Rationale for this change
    
    Using a wildcard does not work.
    
    # What changes are included in this PR?
    
    Explicitly include root workspace and
    `arrow-pyarrow-integration-testing` in dependabot config for cargo.
    
    # Are there any user-facing changes?
    
    No.
---
 .github/dependabot.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index c4bab5962e..7ccf01fed2 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -2,7 +2,8 @@ version: 2
 updates:
   - package-ecosystem: cargo
     directories:
-      - "**/*"
+      - "/"
+      - "/arrow-pyarrow-integration-testing"
     schedule:
       interval: daily
     open-pull-requests-limit: 10

Reply via email to