Branch Merge
ActionsTags
(2)Automate merging of a source branch into a target branch.
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'
Branch Merge is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.