From e891cd1b8cba42e2d0f55dfcb1e5899610e2048a Mon Sep 17 00:00:00 2001 From: Eduardo Ponz Segrelles Date: Thu, 16 May 2024 09:47:40 +0200 Subject: [PATCH] Update mirror job (#4790) * Refs #20893: Update mirror job Signed-off-by: eduponz * Refs #20893: Custom mirror workflow for 2.14.x Signed-off-by: eduponz --------- Signed-off-by: eduponz --- .github/workflows/mirror.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index 8490d894475..b4b8862c146 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -1,22 +1,24 @@ # .github/workflows/mirror.yml +name: Mirror on: push: branches: - - 'master' + - '2.14.x' + jobs: mirror_job: runs-on: ubuntu-latest - name: Mirror master branch to API & ABI compatible minor version branches + name: Mirror 2.14.x branch to compatible version branches 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@v0 with: github-token: ${{ secrets.GITHUB_TOKEN }} - source: 'master' + source: '2.14.x' dest: ${{ matrix.dest_branch }}