We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b5331 commit b3da8c7Copy full SHA for b3da8c7
build/build_prep.ps1
@@ -1,4 +1,8 @@
1
dotnet new tool-manifest
2
dotnet tool install Cake.Tool --version 1.1.0
3
Invoke-WebRequest https://cakebuild.net/download/bootstrapper/dotnet-tool/windows -OutFile build.ps1
4
-git fetch --all
+if ($prNo = $env:APPVEYOR_PULL_REQUEST_NUMBER) {
5
+ Write-Host "PR Build, creating an explicit branch"
6
+ git fetch --all
7
+ git checkout -b "pr-build-$prNo"
8
+}
0 commit comments