Skip to content

Commit

Permalink
add sync-upstream action
Browse files Browse the repository at this point in the history
  • Loading branch information
wKich committed Mar 21, 2021
1 parent 4d03de9 commit 4a53dd8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/sync-upstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sync Fork

on:
schedule:
- cron: '0 0 * * *' # every day
workflow_dispatch: # on button click

# TODO define PR title

jobs:
sync:

runs-on: ubuntu-latest

steps:
- uses: tgymnich/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
owner: storybookjs
base: master
head: master
merge_method: rebase

0 comments on commit 4a53dd8

Please sign in to comment.