You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Merge branch
v1.3.1
Runs a git merge in your CI.
Examples:
name: Sync multiple branches
on:
push:
branches:
- '*'
jobs:
sync-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Merge development -> staging
uses: devmasx/[email protected]
with:
type: now
from_branch: development
target_branch: staging
github_token: ${{ github.token }}
- name: Merge staging -> uat
uses: devmasx/[email protected]
with:
type: now
from_branch: staging
target_branch: uat
github_token: ${{ github.token }}
name: Merge any release branch to uat
on:
push:
branches:
- 'release/*'
jobs:
merge-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Merge staging -> uat
uses: devmasx/[email protected]
with:
type: now
target_branch: uat
github_token: ${{ github.token }}
Merge pull request branch using GitHub labels.
When you set a label in a pull request this action can merge the pull request branch to other branch, useful for develop branch or staging environments.
name: Merge branch with labeled
on:
pull_request:
types: [labeled]
jobs:
merge-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Merge by labeled
uses: devmasx/[email protected]
with:
label_name: 'merged in develop'
target_branch: 'develop'
github_token: ${{ github.token }}