Sync Upstream #127
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
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 }} |