Skip to content

Commit 78e4f4b

Browse files
authored
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.
1 parent d18877b commit 78e4f4b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ name: CI
1919
on:
2020
pull_request:
2121
push:
22-
branches: [main]
23-
tags: ['*']
22+
branches:
23+
- '**'
24+
- '!dependabot/**'
25+
tags:
26+
- '**'
2427
jobs:
2528
license:
2629
name: Audit licenses

0 commit comments

Comments
 (0)