Take this warning seriously. This happens either
For the first reason: Take your branch to local, merge the origin of the destination branch to your branch, commit and push. Check the PR now. It must be resolved now. If not, then you must check the second reason.
For the second reason: When you have pushed a branch to your current branch which is not the origin of your current branch.
- The best solution, if feasible in your case, is to identify the branch which was not the origin of your branch and revert the commit and push it.
- If not, then create a new branch from the origin of the destination, cherry pick all the commits which are relevant and commit push. Create a new PR from this new branch.
Choose the option based on your feasibility.