-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to keep datafusion dev branch up to date
- Loading branch information
1 parent
23603de
commit 41622aa
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Keep datafusion branch up to date | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
# When this workflow is queued, automatically cancel any previous running | ||
# or pending jobs | ||
concurrency: | ||
group: datafusion-sync | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
sync-branches: | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'dask-contrib/dask-sql' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12 | ||
- name: Opening pull request | ||
id: pull | ||
uses: tretuna/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
FROM_BRANCH: main | ||
TO_BRANCH: datafusion-sql-planner |