pull-requests-focal fails at irrelevant files

Hello! I have created a PR few weeks ago.
It started to fail in some pull-requests-focal tasks. However, the files emitting errors are not relevant to my changes. Could you tell me how to fix it?

I tried hitting update branch but seems not working due to permissions. I can alternatively merge the latest main changes on my local machine and then push it to my PR, would that be okay?

Thanks

Rebase your branch noto main, rather than merging:

git switch main
git pull
git switch ticket_34613
git rebase main
git push

Rebasing replays the commits from your branch onto a new base.

1 Like

Thanks! I’ll try that