fix: parse nested objects #117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 🔗 Links: | |
# Source file: https://github.com/rootstrap/react-native-template/blob/master/.github/workflows/check-merge-conflicts.yml | |
# ✍️ Description: | |
# This action is used to check for merge conflicts. | |
# Runs on any pull request, and also when pushing to main/master | |
# 🚨 GITHUB SECRETS REQUIRED: NONE | |
name: Check for merge conflicts | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
check-conflicts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📦 Checkout project repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check for merge conflicts | |
uses: olivernybroe/[email protected] |