Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jacogr/action-merge
- Owner: jacogr
- License: apache-2.0
- Created: 2022-03-01T13:55:41.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T07:02:56.000Z (almost 2 years ago)
- Last Synced: 2024-10-05T07:09:36.590Z (about 2 months ago)
- Language: TypeScript
- Size: 1.37 MB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## action-merge
Merge GitHub actions based on checks and labels.
Example config -
```
name: Auto-merge pull requeston: 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 }}
```