1 Commits

Author SHA1 Message Date
ed7d63a5d5 Update php Docker tag to v8.5.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
lint-test-helm / helm-lint (pull_request) Successful in 17s
2025-12-02 00:19:15 +00:00

View File

@@ -47,7 +47,11 @@ jobs:
git config user.email "gitea-bot@alexlebens.net"
echo ">> Checking if PR branch exists ..."
if [[ $(git ls-remote --heads origin "${BRANCH_NAME}" | wc -l) -gt 0 ]]; then
set e+
git ls-remote --exit-code --heads origin "${BRANCH_NAME}" > /dev/null 2>&1
set e-
if [ $? -eq 0 ]; then
echo ">> Branch '${BRANCH_NAME}' exists, pulling changes ..."
git fetch origin "${BRANCH_NAME}"
git checkout "${BRANCH_NAME}"