From 829b62bd194a878bf27547663e9c317c458a5539 Mon Sep 17 00:00:00 2001 From: Eleftheria Stein Date: Mon, 22 Feb 2021 11:19:13 +0100 Subject: [PATCH] Differentiate 2.4.x CI from master CI - rename CI workflow file - rename CI workflow identifier - change daily build time - ensure checkout is always run on 2.4.x Issue: gh-1794 --- ...w.yml => continuous-integration-workflow-2.4.x.yml} | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) rename .github/workflows/{continuous-integration-workflow.yml => continuous-integration-workflow-2.4.x.yml} (95%) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow-2.4.x.yml similarity index 95% rename from .github/workflows/continuous-integration-workflow.yml rename to .github/workflows/continuous-integration-workflow-2.4.x.yml index ebf31b8f..e1a8d38b 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow-2.4.x.yml @@ -1,11 +1,11 @@ -name: CI +name: 2.4.x CI on: push: branches: - 2.4.x schedule: - - cron: '0 10 * * *' # Once per day at 10am UTC + - cron: '4 10 * * *' # Once per day at 10:04am UTC workflow_dispatch: # Manual trigger env: @@ -25,6 +25,8 @@ jobs: fail-fast: false steps: - uses: actions/checkout@v2 + with: + ref: '2.4.x' - name: Set up JDK ${{ matrix.jdk }} uses: actions/setup-java@v1 with: @@ -47,6 +49,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + ref: '2.4.x' - name: Set up JDK uses: actions/setup-java@v1 with: @@ -74,6 +78,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + ref: '2.4.x' - name: Set up JDK uses: actions/setup-java@v1 with: