Merge pull request #2354 from nervosnetwork/develop #315
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: Request to deploy mainnet | |
permissions: | |
pull-requests: write | |
on: | |
push: | |
branches: [testnet] | |
jobs: | |
request-to-deploy-mainnet: | |
name: Request to deploy mainnet | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Request PR | |
uses: repo-sync/pull-request@v2 | |
with: | |
source_branch: "testnet" | |
destination_branch: "master" | |
pr_title: "Deploy to mainnet" | |
pr_reviewer: "rabbitz,zmcNotafraid,keith-cy" | |
pr_label: "auto-pr" | |
github_token: ${{ secrets.GITHUB_TOKEN }} |