From 97983073233bd188e7d90b6571fb11de53378597 Mon Sep 17 00:00:00 2001 From: Eduardo Ponz Segrelles Date: Thu, 16 May 2024 10:09:27 +0200 Subject: [PATCH] Update mirror job (#773) * Refs #20893: Adjust mirror workflow for 2.14.x branch Signed-off-by: eduponz * Refs #20893: Apply Eliana's suggestions Signed-off-by: eduponz --------- Signed-off-by: eduponz --- .github/workflows/mirror.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index fd5da2755..91963840c 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -1,23 +1,24 @@ # .github/workflows/mirror.yml +name: Mirror on: push: branches: - - 'master' + - '2.14.x' jobs: mirror_job: - name: Mirror master branch to latest minor branches + name: Mirror 2.14.x branch to compatible version branches runs-on: ubuntu-latest strategy: fail-fast: false matrix: dest_branch: - - '2.14.x' + - '2.x' steps: - name: Mirror action step id: mirror uses: eProsima/eProsima-CI/external/mirror-branch-action@main with: github-token: ${{ secrets.GITHUB_TOKEN }} - source: 'master' + source: '2.14.x' dest: ${{ matrix.dest_branch }}