Merge pull request #2237 from nervosnetwork/testnet #130
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 | |
permissions: | |
pull-requests: write | |
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 }} |