Skip to content

Commit

Permalink
Update mirror job (#773)
Browse files Browse the repository at this point in the history
* Refs #20893: Adjust mirror workflow for 2.14.x branch

Signed-off-by: eduponz <[email protected]>

* Refs #20893: Apply Eliana's suggestions

Signed-off-by: eduponz <[email protected]>

---------

Signed-off-by: eduponz <[email protected]>
  • Loading branch information
EduPonz authored May 16, 2024
1 parent 2c1cad4 commit 9798307
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 9798307

Please sign in to comment.