Skip to content

Commit

Permalink
Merge pull request #465 from Magickbase/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY authored Aug 17, 2022
2 parents c99334c + ac94f5b commit 44d904e
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ on:
branches: [develop]

jobs:
merge-to-master:
name: Merge to master
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Request PR
uses: repo-sync/pull-request@v2
with:
source_branch: 'develop'
destination_branch: 'master'
pr_title: 'Merge develop into master'
pr_reviewer: 'keith-cy'
pr_label: 'auto-pr'
github_token: ${{ secrets.GITHUB_TOKEN }}

merge-to-v1-mainnet:
name: Merge to v1 mainnet
runs-on: ubuntu-latest
Expand All @@ -15,7 +30,7 @@ jobs:
with:
source_branch: 'develop'
destination_branch: 'v1/master'
pr_title: 'Merge develop ${{ github.ref }} into v1 mainnet'
pr_title: 'Merge develop into v1 mainnet'
pr_reviewer: 'keith-cy'
pr_label: 'auto-pr'
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -30,7 +45,7 @@ jobs:
with:
source_branch: 'develop'
destination_branch: 'v1/testnet'
pr_title: 'Merge develop ${{ github.ref }} into v1 testnet'
pr_title: 'Merge develop into v1 testnet'
pr_reviewer: 'keith-cy'
pr_label: 'auto-pr'
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -45,7 +60,7 @@ jobs:
with:
source_branch: 'develop'
destination_branch: 'v1/betanet'
pr_title: 'Merge develop ${{ github.ref }} into v1 betanet'
pr_title: 'Merge develop into v1 betanet'
pr_reviewer: 'keith-cy'
pr_label: 'auto-pr'
github_token: ${{ secrets.GITHUB_TOKEN }}

1 comment on commit 44d904e

@vercel
Copy link

@vercel vercel bot commented on 44d904e Aug 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.