Create sync-repo.yml

pull/17/head
Maksym Titenko 4 years ago committed by GitHub
parent 88561f481f
commit 1cbd8b6960
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,21 @@
name: sync-repo
on:
schedule:
- cron: "*/20 * * * *"
workflow_dispatch: # on button click
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Fetch upstream
uses: 135e2/sync-upstream-repo@v0.1.5
with:
#Git upstream repo
upstream_repo: https://github.com/cutefishos/terminal.git
upstream_branch: main
local_branch: main
github_token: ${{ secrets.GITHUB_TOKEN }}
Loading…
Cancel
Save