Files modified in PR not computed correctly because clone depth = 1 #473
Closed
Description
Is an example where we incorrectly detected the files that were changed in the PR.
We ended up including files which had been modified on master after the commit on which the PR was based.
The command
git merge-base HEAD remotes/origin/master
failed so we ended up computing a diff against master.
It looks like we are cloning with depth = 2
Line 31 in a841aa0