Merge pull request #1597 from nervosnetwork/testnet #49
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: Merge master to develop | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
merge-master-to-develop: | |
name: Merge master to develop | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Merge master to develop | |
uses: repo-sync/pull-request@v2 | |
with: | |
source_branch: master | |
destination_branch: develop | |
pr_title: 'Merge released ${{ github.ref }} into develop' | |
pr_reviewer: keith-cy | |
pr_label: auto-pr | |
pr_body: ':crown: *Anautomated PR*' | |
github_token: ${{ secrets.GITHUB_TOKEN }} |