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 41a9c6e commit f50b850Copy full SHA for f50b850
.github/workflows/check-merge-conflicts.yml
@@ -0,0 +1,27 @@
1
+# 🔗 Links:
2
+# Source file: https://github.com/rootstrap/react-native-template/blob/master/.github/workflows/check-merge-conflicts.yml
3
+
4
+# ✍️ Description:
5
+# This action is used to check for merge conflicts.
6
+# Runs on any pull request, and also when pushing to main/master
7
8
+# 🚨 GITHUB SECRETS REQUIRED: NONE
9
10
+name: Check for merge conflicts
11
12
+on:
13
+ push:
14
+ branches: [main, master]
15
+ pull_request:
16
+ types: [opened, synchronize]
17
18
+jobs:
19
+ check-conflicts:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - name: 📦 Checkout project repo
23
+ uses: actions/checkout@v3
24
+ with:
25
+ fetch-depth: 0
26
+ - name: Check for merge conflicts
27
+ uses: olivernybroe/[email protected]
0 commit comments