We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8af907c commit f8dba14Copy full SHA for f8dba14
.github/workflows/detect-conflicts.yml
@@ -0,0 +1,19 @@
1
+name: "Conflict detector"
2
+on:
3
+ push:
4
+ pull_request_target:
5
+ types: [synchronize]
6
+
7
+jobs:
8
+ main:
9
+ permissions:
10
+ contents: read
11
+ pull-requests: write
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Check if PRs have merge conflicts
15
+ uses: eps1lon/actions-label-merge-conflict@v3
16
+ with:
17
+ dirtyLabel: "conflicts"
18
+ repoToken: "${{ secrets.GITHUB_TOKEN }}"
19
+ commentOnDirty: "This pull request has a merge conflict that needs to be resolved."
0 commit comments