Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/auto-merge-feature-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
id: conflict_check
run: |
git fetch origin main
if ! git merge-tree $(git merge-base HEAD origin/main) HEAD origin/main | grep -q "^changed in both"; then
echo "has_conflict=false" >> $GITHUB_OUTPUT
else
if git merge-tree $(git merge-base HEAD origin/main) HEAD origin/main | grep -q "^changed in both"; then
echo "has_conflict=true" >> $GITHUB_OUTPUT
else
echo "has_conflict=false" >> $GITHUB_OUTPUT
fi

- name: Create conflict issue
Expand Down
Loading