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

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


The following commit(s) were added to refs/heads/main by this push:
     new 78e4f4b  Add support for running CI on fork (#553)
78e4f4b is described below

commit 78e4f4b04a309433179cfafbf9ddb9f9ac8eb9bb
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sat May 10 12:41:39 2025 +0900

    Add support for running CI on fork (#553)
    
    Fixes #552
    
    Push for all branches except branches that are created by Dependabot
    runs CI. Dependabot creates a branch in apache/arrow-julia and open a PR
    to apache/arrow-juila. If it happens, CI is triggered by both of push
    and pull_request. We need only pull_request for the case.
---
 .github/workflows/ci.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index cd10082..7eb8b2f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -19,8 +19,11 @@ name: CI
 on:
   pull_request:
   push:
-    branches: [main]
-    tags: ['*']
+    branches:
+      - '**'
+      - '!dependabot/**'
+    tags:
+      - '**'
 jobs:
   license:
     name: Audit licenses

Reply via email to