From 3b79795a46f5a18c0f0689ae817890f79a8568ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Bispo?= Date: Mon, 11 Nov 2024 15:19:06 +0000 Subject: [PATCH] Changes default branch in github workflow to staging --- .github/workflows/nightly.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9cace191a..8fd4d51d2 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -20,7 +20,9 @@ permissions: env: JAVA_VERSION: 17 BRANCH_NAME: ${{ github.head_ref || github.ref_name }} - DEFAULT_BRANCH: ${{ github.base_ref || 'master' }} + # Setting default branch to staging assuming PRs will be done against the staging versions of the repository + # main versions will just receive what comes from the staging + DEFAULT_BRANCH: ${{ github.base_ref || 'staging' }} #SPECS_JAVA_LIBS_BRANCH: ${{ 'master' }} #LARA_FRAMEWORK_BRANCH: ${{ github.head_ref || github.ref_name }}