Skip to content

Sync Upstream

Sync Upstream #136

Workflow file for this run

name: Sync Upstream
# Uses https://github.com/marketplace/actions/sync-and-merge-upstream-repository-with-your-current-repository
on:
schedule:
# 11:30am UTC
- cron: "30 11 * * *"
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Sync with Upstream Repository
uses: dabreadman/sync-upstream-repo@v1.3.0
with:
upstream_repo: "https://github.com/Labelbox/labelbox-python.git"
upstream_branch: "develop"
downstream_branch: "develop"
token: ${{ secrets.GITHUB_TOKEN }}