From 694f46f7f7fe94a28543c4b29f8c62d80875714c Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 11:54:26 +0530 Subject: [PATCH] ci(mariadb): track the erpnext branch for frappe, drop hardcoded develop Remove the `|| 'develop'` fallback on FRAPPE_BRANCH so install.sh resolves the frappe framework branch from the git context (GITHUB_BASE_REF/GITHUB_REF), the same as the Postgres workflow. This makes the workflow backportable unchanged: on version-15-hotfix / version-16-hotfix it now clones the matching frappe branch instead of develop. --- .github/workflows/server-tests-mariadb.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/server-tests-mariadb.yml b/.github/workflows/server-tests-mariadb.yml index 4b800c5ed09..68304f5fefd 100644 --- a/.github/workflows/server-tests-mariadb.yml +++ b/.github/workflows/server-tests-mariadb.yml @@ -100,7 +100,7 @@ jobs: DB: mariadb TYPE: server FRAPPE_USER: ${{ github.event.inputs.user }} - FRAPPE_BRANCH: ${{ github.event.client_payload.sha || github.event.inputs.branch || 'develop' }} + FRAPPE_BRANCH: ${{ github.event.client_payload.sha || github.event.inputs.branch }} DB_HOST: 127.0.0.1 DB_USER_HOST: '%' WKHTMLTOX_DEB: /tmp/wkhtmltox.deb