From a0e7463d43792ccfa0a2fd4f84709e56a1a6579e Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Sat, 10 May 2025 10:18:47 +0900 Subject: [PATCH] Add support for running CI on fork 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 911910e..a5998a7 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