Git Product home page Git Product logo

gh-action-automerge's Introduction

AutoMerge Action

Automatically merge a branch into another.

Inspired by robotology/gh-action-nightly-merge

If the merge is not necessary, the action will do nothing. If the merge fails due to conflicts, the action will fail, and the repository maintainer should perform the merge manually.

Installation

To enable the action simply create the .github/workflows/automerge.yml file with the following content:

name: 'AutoMerge'

on:
  schedule:
    - cron:  '0 0 * * *'

jobs:
  automerge:
    runs-on: ubuntu-latest

    steps:
    - name: Checkout
      uses: actions/checkout@v2
      with:
        persist-credentials: true
        fetch-depth: 50

    - name: AutoMerge
      uses: MilleniumStudio/[email protected]
      with:
        source_branch: 'dev'
        destination_branch: 'master'

Even though this action was created to run as a scheduled workflow, on can be replaced by any other trigger. For example, this will run the action whenever something is pushed on the master branch:

on:
  push:
    branches:
      - master

Parameters

source_branch

The name of the source branch (required).

destination_branch

The name of the destination branch (required).

allow_ff

Allow fast forward merge (default false). If not enabled, merges will use --no-ff.

ff_only

Refuse to merge and exit unless the current HEAD is already up to date or the merge can be resolved as a fast-forward (default false). Requires allow_ff=true.

user_name

User name for git commits (default GitHub AutoMerge Action).

user_email

User email for git commits (default [email protected]).

gh-action-automerge's People

Contributors

tuxity avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.