We have an Azure DevOps pipeline to run tests, that is triggered by the completion of another pipeline that builds and publishes artifacts when a pull request completes.
Ideally we would like the second pipeline to show the user that completed the original Pull Request, rather than the last person to modify the testing branch. Any failures of the second pipeline would also raise a Work Item and assign it to the user that completed the original Pull Request.
There is a mechanism for updating the build number, but I cannot find a way to update the RequestedFor information.
Update:
I found we can update the Build number using
Write-Host "##vso[build.updatebuildnumber]$BuildNumber"
in PowerShell, but cannot find any way the change the requesting user.

