We tend to rebase every branch after every MR is merged. It leads to a lot of unnecessary pipelines and so on. But we squash every MR into one commit.
So given there are no conflicts in merge requests, can omitting rebase onto master before merge lead to any problems?
You can probably skip the pre-merge rebase.
I can think of 3 reasons one might rebase the source branch onto the target branch before completing a MR (or PR):
merge --no-ff
then the resulting history would be cleaner, resulting in nice little merge bubbles. (Since you squash, this also is not applicable in your case.)Obviously #1 and #2 aren't applicable in your case, but if I were in your shoes, and I had good test coverage, #3 would probably be a good enough reason for me to blindly rebase and re-run the tests just in case. If I didn't have good coverage and didn't have an easy way to retest everything, I'd probably take a quick peek and see if I thought it was needed, and if not, I'd skip it.
Side Notes: