summaryrefslogtreecommitdiff
path: root/azure-pipelines/templates
diff options
context:
space:
mode:
Diffstat (limited to 'azure-pipelines/templates')
-rw-r--r--azure-pipelines/templates/release-prepare-source.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/azure-pipelines/templates/release-prepare-source.yml b/azure-pipelines/templates/release-prepare-source.yml
index 22ec126b1..b20bf0b35 100644
--- a/azure-pipelines/templates/release-prepare-source.yml
+++ b/azure-pipelines/templates/release-prepare-source.yml
@@ -5,7 +5,18 @@
steps:
- script: |
set -ex
- git checkout -B ${BUILD_SOURCEBRANCHNAME}
+
+ if [ -n "${SYSTEM_PULLREQUEST_PULLREQUESTNUMBER}" ]; then
+ # We are triggered from a GitHub Pull Request
+ git checkout -B pr${SYSTEM_PULLREQUEST_PULLREQUESTNUMBER}
+ elif [ "${BUILD_SOURCEBRANCHNAME}" = "merge" ] || [ "${BUILD_SOURCEBRANCHNAME}" = "head" ]; then
+ # We are manually triggered based on a GitHub Pull Request
+ PULLREQUESTNUMBER=$(echo ${BUILD_SOURCEBRANCH} | cut -d/ -f3)
+ git checkout -B pr${PULLREQUESTNUMBER}
+ else
+ git checkout -B ${BUILD_SOURCEBRANCHNAME}
+ fi
+
./findversion.sh > .ottdrev
./azure-pipelines/changelog.sh > .changelog
TZ='UTC' date +"%Y-%m-%d %H:%M UTC" > .release_date