Skip to content

Automerger-Action

Actions
Merge source branch into target branch
v1.0.4
Latest
Star (2)

action-automerger

GitHub action to automatically merge the source branch into a target branch.

Inputs

source

Required Source branch for the merge

target

Required Target branch for the merge

message

Optional The commit message to use when merging.

Example usage

name: Update cms/master

on:
  push:
    branches:
      - master

jobs:
  update-cms-master:
    name: Merge master into release after a PR is merged
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: actions/checkout@v2

      - name: merge
        uses: richard-scott/[email protected]
        with:
          github_token: ${{ github.token }}
          source: 'master'
          target: 'release'
          message: "${{ github.event.commits[0].message }}"

Automerger-Action 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.

About

Merge source branch into target branch
v1.0.4
Latest

Automerger-Action 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.