1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add github action to label PRs with merge conflicts

This commit is contained in:
Bill Thornton 2020-12-01 10:01:56 -05:00
parent 76d2b7018c
commit fe3bd2e35d

14
.github/workflows/merge-conflicts.yml vendored Normal file
View 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 }}