app-MAIL-temp/.github/workflows/fork.yml
2024-03-11 09:28:18 +00:00

21 lines
445 B
YAML

name: Sync Fork
on:
schedule:
- cron: '*/30 * * * *' # every 30 minutes
workflow_dispatch: # on button click
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: tgymnich/fork-sync@v1.8
with:
owner: simple-login
repo: app
base: master
head: master
ignore_fail: true
continue-on-error: true
- run: echo "🍏 This job's status is ${{ job.status }}."