mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
12 lines
404 B
Bash
Executable file
12 lines
404 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
docker run \
|
|
--user $(id -u):$(id -g) \
|
|
--volume ${WORKING_DIR}:/data \
|
|
--workdir /data \
|
|
phpbb/build${IMAGES_TAG} sh -c '
|
|
git config user.email "no-reply@phpbb.com" &&
|
|
git config user.name "phpBB CI" &&
|
|
git remote set-url origin "https://github.com/phpbb/phpbb.git" &&
|
|
git fetch origin +refs/pull/'${PR_NUMBER}'/merge &&
|
|
git checkout FETCH_HEAD'
|