https://github.com/moneymeets/action-merge-checks
GitHub action for checking merges
https://github.com/moneymeets/action-merge-checks
Last synced: 2 months ago
JSON representation
GitHub action for checking merges
- Host: GitHub
- URL: https://github.com/moneymeets/action-merge-checks
- Owner: moneymeets
- Created: 2021-01-08T16:57:30.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-08-17T21:31:38.000Z (2 months ago)
- Last Synced: 2025-08-18T16:05:38.258Z (2 months ago)
- Language: Python
- Homepage:
- Size: 404 KB
- Stars: 0
- Watchers: 5
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# action-merge-checks
For example, use the following workflow in your repositories:
```yaml
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.