Skip to content

Commit

Permalink
Add mirror job (#84)
Browse files Browse the repository at this point in the history
Signed-off-by: eduponz <[email protected]>
  • Loading branch information
EduPonz authored May 16, 2024
1 parent 4d7266e commit b0d03e2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# .github/workflows/mirror.yml
name: Mirror
on:
push:
branches:
- '1.2.x'

jobs:
mirror_job:
runs-on: ubuntu-latest
name: Mirror 1.2.x branch to compatible version branches
strategy:
fail-fast: false
matrix:
dest_branch:
- '1.x'
steps:
- name: Mirror action step
id: mirror
uses: eProsima/eProsima-CI/external/mirror-branch-action@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
source: '1.2.x'
dest: ${{ matrix.dest_branch }}

0 comments on commit b0d03e2

Please sign in to comment.