An open API service indexing awesome lists of open source software.

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

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.