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
4 changes: 2 additions & 2 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ jobs:
conflicted_files=$(git diff --name-only --diff-filter=U)
if [ -n "$conflicted_files" ]; then
echo "$conflicted_files" | while IFS= read -r file; do
echo "Unstaging conflicting file $file"
git restore --staged "$file"
echo "Resetting conflicting file $file"
git reset "$file"
done
fi
git commit --author="$(git show -s --format='%an <%ae>' $commit_sha)" \
Expand Down
Loading