mirror of https://github.com/OpenTTD/OpenTTD
Fix: [AzurePipelines] in case of a Pull Request, use that number (prefix with 'pr') as branchname
Otherwise the branch name is always 'merge', which is not really useful or verbose.pull/7203/head
parent
5b74118ae7
commit
b7ed49af33
|
@ -5,7 +5,18 @@
|
||||||
steps:
|
steps:
|
||||||
- script: |
|
- script: |
|
||||||
set -ex
|
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
|
./findversion.sh > .ottdrev
|
||||||
./azure-pipelines/changelog.sh > .changelog
|
./azure-pipelines/changelog.sh > .changelog
|
||||||
TZ='UTC' date +"%Y-%m-%d %H:%M UTC" > .release_date
|
TZ='UTC' date +"%Y-%m-%d %H:%M UTC" > .release_date
|
||||||
|
|
Loading…
Reference in New Issue