GitHub action to automatically merge pull requests when they are ready.
When added, this action will run the following tasks on pull requests with the
automerge
label:
- Changes from the base branch will automatically be merged into the pull request (only when "Require branches to be up to date before merging" is enabled in the branch protection rules)
- When the pull request is ready, it will automatically be merged
- Pull requests without any configured labels will be ignored
Labels, merge and update strategies are configurable, see Configuration.
A pull request is considered ready when:
- the required number of review approvals has been given (if enabled in the branch protection rules) and
- the required checks have passed (if enabled in the branch protection rules) and
- the pull request is up to date (if enabled in the branch protection rules)
After the pull request has been merged successfully, the branch will not be deleted. To delete branches after they are merged, see automatic deletion of branches.
Create a new .github/workflows/automerge.yml
file:
name: automerge
on:
pull_request:
types:
- labeled
- unlabeled
- synchronize
- opened
- edited
- ready_for_review
- reopened
- unlocked
pull_request_review:
types:
- submitted
status: {}
jobs:
automerge:
runs-on: ubuntu-latest
steps:
- name: automerge
uses: "pascalgn/automerge-action@7854d3bd607dccdaf0b2c134b699a812c8960213"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
The following merge options are supported:
-
MERGE_LABELS
: The labels that need to be present for a pull request to be merged (usingMERGE_METHOD
). The default value isautomerge
.This option can be a comma-separated list of labels that will be checked. All labels in the list need to be present, otherwise the pull request will be skipped (until all labels are present). Labels prefixed with an exclamation mark (
!
) will block a pull request from being merged, when present.For example, when
automerge,!wip,!work in progress
is given, any pull requests with the labelswip
orwork in progress
and any pull requests without the labelautomerge
will not be merged. Blocking labels take precedence, so if a pull request has both labelswip
andautomerge
, it will not be merged.When an empty string (
""
) is given, all pull requests will be merged. -
MERGE_METHOD
: Which method to use when merging the pull request into the base branch. Possible values aremerge
(create a merge commit),rebase
(rebase all commits of the branch onto the base branch) orsquash
(squash all commits into a single commit). The default option ismerge
. -
MERGE_COMMIT_MESSAGE
: The commit message to use when merging the pull request into the base branch. Possible values areautomatic
(use GitHub's default message),pull-request-title
(use the pull request's title),pull-request-description
(use the pull request's description),pull-request-title-and-description
or a literal value with optional placeholders (for exampleAuto merge {pullRequest.number}
). The default value isautomatic
. -
MERGE_FORKS
: Whether merging from external repositories is enabled or not. By default, pull requests with branches from forked repositories will be merged the same way as pull requests with branches from the main repository. Set this option tofalse
to disable merging of pull requests from forked repositories. -
MERGE_RETRIES
andMERGE_RETRY_SLEEP
: Sometimes, the pull request check runs haven't finished yet, so the action will retry the merge after some time. The number of retries can be set withMERGE_RETRIES
. The default number of retries is6
and setting it to0
disables the retry logic.MERGE_RETRY_SLEEP
sets the time to sleep between retries, in milliseconds. The default is10000
(10 seconds) and setting it to0
disables sleeping between retries. -
MERGE_DELETE_BRANCH
: Automatic deletion of branches does not work for all repositories. Set this option totrue
to automatically delete branches after they have been merged.
The following update options are supported:
-
UPDATE_LABELS
: The labels that need to be present for a pull request to be updated (usingUPDATE_METHOD
). The default value isautomerge
.Note that updating will only happen when the option "Require branches to be up to date before merging" is enabled in the branch protection rules.
This option can be a comma-separated list of labels, see the
MERGE_LABELS
option for more information. -
UPDATE_METHOD
: Which method to use when updating the pull request to the base branch. Possible values aremerge
(create a merge commit) orrebase
(rebase the branch onto the head of the base branch). The default option ismerge
.When the option is
rebase
and the rebasing failed, the action will exit with error code 1. This will also be visible in the pull request page, with a message like "this branch has conflicts that must be resolved" and a list of conflicting files.
Also, the following general options are supported:
-
GITHUB_TOKEN
: This should always be"${{ secrets.GITHUB_TOKEN }}"
. However, in some cases it can be useful to run this action as a certain user (by default, it will run asgithub-actions
). This can be useful if you want to use the "Restrict who can push to matching branches" option in the branch protection rules, for example.To use this setting for manually providing a token, you need to create a personal access token for the user (make sure to check
public_repo
when it's a public repository orrepo
when it's a private repository). All API requests (merge/rebase) will then be executed as the specified user. The token should be kept secret, so make sure to add it as secret, not as environment variable, in the GitHub workflow file!
You can configure the environment variables in the workflow file like this:
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
MERGE_LABELS: "automerge,!work in progress"
MERGE_METHOD: "squash"
MERGE_COMMIT_MESSAGE: "pull-request-description"
MERGE_FORKS: "false"
MERGE_RETRIES: "6"
MERGE_RETRY_SLEEP: "10000"
UPDATE_LABELS: ""
UPDATE_METHOD: "rebase"
- When a pull request is merged by this action, the merge will not trigger other GitHub workflows. Similarly, when another GitHub workflow creates a pull request, this action will not be triggered. This is because an action in a workflow run can't trigger a new workflow run.
- When a check from a build tools like Jenkins or CircleCI completes, GitHub triggers the action workflow, but sometimes the pull request state is still pending, blocking the merge. This is an open issue.
- Currently, there is no way to trigger workflows when the pull request branch becomes out of date with the base branch. There is a request in the GitHub community forum.