forked from Game-as-a-Service/uno-flip-java
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (23 loc) · 845 Bytes
/
sync.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 }}