Skip to content

Commit

Permalink
try merge-upstream workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dennybaa committed Sep 2, 2020
1 parent a6b213d commit 3f5a8fb
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/merge-upstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Merge
on:
repository_dispatch:
type: [merge-upstream]

jobs:
merge-upstream:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.client_payload.stage }}
- name: Merge Upstream (@${{ github.event.client_payload.stage }})
uses: exions/merge-upstream@v1
with:
upstream: matter-labs/zksync-dev
upstream-branch: ${{ github.event.client_payload.stage }}
branch: ${{ github.event.client_payload.stage }}
token: ${{ secrets.GH_TOKEN }}

0 comments on commit 3f5a8fb

Please sign in to comment.