Browse Source

CI: Add github workflow to tag merge conflicts

Colin Edwards 5 years ago
parent
commit
53e01617c9
1 changed files with 12 additions and 0 deletions
  1. 12 0
      .github/workflows/main.yml

+ 12 - 0
.github/workflows/main.yml

@@ -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 }}