Sync Fork #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync Fork | |
on: | |
schedule: | |
- cron: '15 */4 * * *' # every hour | |
workflow_dispatch: # on button click | |
jobs: | |
sync: | |
name: Sync | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sync the fork | |
uses: tgymnich/[email protected] | |
with: | |
token: ${{ secrets.GH_PAT }} | |
base: main | |
head: main | |
auto_merge: true |