Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jacogr/action-merge

Merge PRs based on label and checks
https://github.com/jacogr/action-merge

Last synced: about 1 month ago
JSON representation

Merge PRs based on label and checks

Awesome Lists containing this project

README

        

## action-merge

Merge GitHub actions based on checks and labels.

Example config -

```
name: Auto-merge pull request

on: pull_request

jobs:
auto-approve:
runs-on: ubuntu-latest
steps:
- uses: jacogr/action-merge@master
with:
checks: lint,build,test
labels: automerge
strategy: squash
token: ${{ secrets.GITHUB_TOKEN }}
```