Skip to content

moneymeets/action-merge-checks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

action-merge-checks

For example, use the following workflow in your repositories:

name: Merge checks

on:
  push:
    branches:
      - feature/*

jobs:
  merge-checks:
    runs-on: ubuntu-20.04
    if: "!contains(github.event.head_commit.message, '[skip checks]')"
    steps:
      - uses: actions/checkout@v2

      - name: Merge checks
        uses: moneymeets/action-merge-checks@master

Here, [skip checks] in the commit message skips the check, returning skipped as the conclusion of the check run.

About

GitHub action for checking merges

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages