Skip to content

Commit

Permalink
Add workflow to keep datafusion dev branch up to date (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbluca authored Mar 25, 2022
1 parent 23603de commit 09c7bdf
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/datafusion-sync.yml
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

0 comments on commit 09c7bdf

Please sign in to comment.