Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/wktk/conflibot
- Owner: wktk
- License: mit
- Created: 2020-04-04T14:33:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T19:28:15.000Z (2 months ago)
- Last Synced: 2024-10-29T21:36:54.507Z (2 months ago)
- Topics: actions, github-actions, javascript-action, project-management, pull-requests
- Language: TypeScript
- Homepage: https://github.com/marketplace/actions/conflibot
- Size: 1.19 MB
- Stars: 10
- Watchers: 3
- Forks: 4
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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_targetjobs:
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)