Skip to content

Commit

Permalink
Update mirror job (#113)
Browse files Browse the repository at this point in the history
Signed-off-by: elianalf <[email protected]>
  • Loading branch information
elianalf authored May 16, 2024
1 parent 826294b commit efe71e9
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 efe71e9

Please sign in to comment.