Skip to content

Releases: devmasx/merge-branch

Support Github Enterprise

29 Aug 17:31
Compare
Choose a tag to compare

v1.4.0

  • Support Github Enterprise #15
  • Bump addressable from 2.7.0 to 2.8.0 #14

Fix, check inputs with empty string values.

02 Nov 05:29
Compare
Choose a tag to compare

Fix read value from GITHUB_SHA or INPUT_FROM_BRANCH, checking empty string values.
#9

Add input github_token, read github token from inputs

22 Jul 15:31
Compare
Choose a tag to compare

v1.3.0

  • Add input github_token, read github token from inputs.

Add optional input from_branch

22 Jul 15:11
2cba488
Compare
Choose a tag to compare

v1.2.0

  • Add input from_branch, perform a git merge for any branch combination.

On any github event

27 Nov 12:05
Compare
Choose a tag to compare

Example for use merge branch on any github event

name: Merge staging branch to uat
on:
  push:
    branches:
      - 'staging'
jobs:
  merge-branch:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: Merge to uat branch
        uses: devmasx/merge-branch@v1.1.0
        with:
          type: now
          target_branch: 'uat'
        env:
          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

A GitHub Action that merge PR branch to other branchs

26 Nov 18:20
Compare
Choose a tag to compare

On labeled

Merge PR branch using github labels.

When you set a label in a PR this action can merge the PR branch to other branch, useful for develop branch or staging enviroments.