Merge pull request #2153 from thornbill/github-action-conflicts
Add github action to label PRs with merge conflicts
This commit is contained in:
commit
0c5ead3e0c
1 changed files with 14 additions and 0 deletions
14
.github/workflows/merge-conflicts.yml
vendored
Normal file
14
.github/workflows/merge-conflicts.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: "Merge Conflicts"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
triage:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: mschilde/auto-label-merge-conflicts@master
|
||||
with:
|
||||
CONFLICT_LABEL_NAME: "merge conflict"
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Add table
Add a link
Reference in a new issue