mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
22 lines
No EOL
449 B
YAML
22 lines
No EOL
449 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 }}."
|
|
|