Sync Fork #59
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 Fork | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 21 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Sync and merge upstream repository with your current repository | |
# You may pin to the exact commit or the version. | |
# uses: dabreadman/sync-upstream-repo@fc5fe9952946b1daaafd9abd7fcd7e260b81ddbe | |
uses: dabreadman/[email protected] | |
with: | |
# URL of gitHub public upstream repo | |
upstream_repo: https://github.com/Game-as-a-Service/uno-flip-java.git | |
# Branch to merge from upstream (defaults to downstream branch) | |
upstream_branch: main | |
# Branch to merge into downstream | |
downstream_branch: main | |
# GitHub Bot token | |
token: ${{ secrets.GITHUB_TOKEN }} | |