Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
git-merge

GitHub Action

Branch Merge

1.0.2

Branch Merge

git-merge

Branch Merge

Merges a source branch, or SHA1 ref into a target branch

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Branch Merge

uses: everlytic/[email protected]

Learn more about this action in everlytic/branch-merge

Choose a version

Merge Branch

Automate merging of a source branch into a target branch.

Usage

on:
  push:
    branches:
      - "release/*"
jobs:
  merge-branch:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: everlytic/branch-merge
        with:
          github_token: ${{ github.token }}
          source_ref: ${{ github.ref }}
          target_branch: 'master'