Skip to content

Commit b3e51c8

Browse files
authored
Merge pull request #80 from rootstrap/feat/add_workflow_for_checking_unresolved_conflicts
feat: add workflow for checking unresolved conflicts
2 parents 4c584b1 + f50b850 commit b3e51c8

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)