CI: Add github workflow to tag merge conflicts

This commit is contained in:
Colin Edwards 2020-02-17 13:48:07 -06:00 committed by GitHub
parent fd244a6896
commit 53e01617c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,12 @@
on:
push:
branches:
- master
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: mschilde/auto-label-merge-conflicts@master
with:
CONFLICT_LABEL_NAME: "Has Conflicts"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}