https://github.com/midnightcommander/action-merge-checks
GitHub action for checking merges
https://github.com/midnightcommander/action-merge-checks
Last synced: 9 months ago
JSON representation
GitHub action for checking merges
- Host: GitHub
- URL: https://github.com/midnightcommander/action-merge-checks
- Owner: MidnightCommander
- Created: 2025-02-23T08:28:38.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-10-01T03:16:26.000Z (9 months ago)
- Last Synced: 2025-10-09T19:31:48.357Z (9 months ago)
- Language: Python
- Homepage:
- Size: 394 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# action-merge-checks
For example, use the following workflow in your repositories:
```yaml
name: Merge checks
on:
pull_request_target:
jobs:
merge-checks:
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.full_name != github.repository && !contains(github.event.pull_request.head_commit.message, '[skip checks]')
steps:
- uses: actions/checkout@v4
- name: Merge checks
uses: midnightcommander/action-merge-checks@master
```
Here, `[skip checks]` in the commit message skips the check, returning `skipped` as the conclusion of the check run.