thomaslevesque / DontMergeMeYet

A GitHub app that adds an "in progress" status on a pull request to avoid merging it prematurely

Home Page:https://github.com/apps/dontmergemeyet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DontMergeMeYet

A GitHub app that adds an "in progress" status to your pull requests to avoid merging them prematurely.

DontMergeMeYet marks the pull request as pending if one of these conditions is true:

  • the PR title contains "WIP" or "DO NOT MERGE" (customizable)
  • the PR has a wip or in-progress label (customizable)
  • a commit message contains "contains "WIP" or "DO NOT MERGE" (customizable)
  • a commit message starts with "fixup!" or "squash!", indicating the branch should be autosquashed

Otherwise, the pull request is marked as ready to merge.

Screenshots

If a pull request contains "WIP" or "DO NOT MERGE" in its title or in a commit message, DontMergeMeYet shows the following status:

Work in progress

If a pull request has commits that need to be squashed (fixup! or squash! commits), DontMergeMeYet shows the following status:

Squash needed

Otherwise, DontMergeMeYet shows the following status:

Ready to merge

Installation

Head to the application's public page, and install the app into one or more repos.

Configuration

You can customize the WIP keywords and labels by creating a dontmergemeyet.yml file at the root of your repo:

wipKeywords:
- text: DO NOT MERGE
  caseSensitive: false  # default is case insensitive
- text: WIP
  caseSensitive: true
wipLabels:
- wip
- in-progress

Note that these settings don't affect how fixup commits are detected ("fixup!" or "squash!" prefix).

DontMergeMeYet will always look for this file on the base branch of the pull request (i.e. the branch into which the PR will be merged).

Privacy

DontMergeMeYet doesn't store any information on users or repositories. By using DontMergeMeYet, you grant it the following permissions:

❌ No access to code (except the dontmergemeyet.yml configuration file)
✔️ Read access to metadata and pull requests
✔️ Read and write access to commit statuses

About

A GitHub app that adds an "in progress" status on a pull request to avoid merging it prematurely

https://github.com/apps/dontmergemeyet

License:MIT License


Languages

Language:C# 100.0%