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.
2 parents a96aa07 + 9a75ac4 commit b8b7975Copy full SHA for b8b7975
.github/workflows/label-merge-conflicts.yml
@@ -0,0 +1,28 @@
1
+name: Check PRs for merge conflicts
2
+
3
+on:
4
+ # Check for new conflicts due to merges.
5
+ push:
6
+ branches:
7
+ - stable
8
+ - develop
9
+ # Check conflicts in new PRs and for resolved conflicts due to an open PR being updated.
10
+ pull_request_target:
11
+ types:
12
+ - opened
13
+ - synchronize
14
+ - reopened
15
16
+jobs:
17
+ check-prs:
18
+ runs-on: ubuntu-latest
19
+ if: github.repository_owner == 'PHPCSStandards'
20
21
+ name: Check PRs for merge conflicts
22
23
+ steps:
24
+ - name: Check PRs for merge conflicts
25
+ uses: eps1lon/actions-label-merge-conflict@v3
26
+ with:
27
+ dirtyLabel: "Status: has merge conflict"
28
+ repoToken: ${{ secrets.GITHUB_TOKEN }}
0 commit comments