Add github action to label PRs with merge conflicts
This commit is contained in:
parent
76d2b7018c
commit
fe3bd2e35d
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