1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-20 02:52:11 +00:00
mailinabox/.github/workflows/fork-sync.yml
2020-12-17 18:01:43 -06:00

21 lines
429 B
YAML

name: Sync Fork
on:
schedule:
- cron: '00 20 * * 0' # every sunday at 20 hours
workflow_dispatch: # on button click
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: tgymnich/fork-sync@v1.2.1
with:
github_token: ${{ secrets.G_TOKEN }}
owner: dbinary
base: master
head: master
auto_approve: true
personal_token: ${{ secrets.G_TOKEN }}