Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/wktk/conflibot

Check and warn if a Pull Request will conflict with another Pull Request when they get merged.
https://github.com/wktk/conflibot

actions github-actions javascript-action project-management pull-requests

Last synced: 22 days ago
JSON representation

Check and warn if a Pull Request will conflict with another Pull Request when they get merged.

Awesome Lists containing this project

README

        

# conflibot

Check and warn if a Pull Request will conflict with another Pull Request when they get merged.

## Configuration

```yaml
name: conflibot
on: pull_request_target

jobs:
conflibot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Warn potential conflicts
uses: wktk/conflibot@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
exclude: |
yarn.lock
**/*.bin
```

### Inputs

- `github-token` *required*: GitHub API token with write access to the repo
- `exclude`: Ignored path patterns in **newline-separated** glob format

## Screenshots

![](./misc/checks.png)
![](./misc/details.png)