We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3038ac5 commit b052c88Copy full SHA for b052c88
1 file changed
.github/workflows/mirror.yml
@@ -1,22 +1,23 @@
1
# .github/workflows/mirror.yml
2
+name: Mirror
3
on:
4
push:
5
branches:
- - 'main'
6
+ - '1.4.x'
7
jobs:
8
mirror_job:
9
runs-on: ubuntu-latest
- name: Mirror main branch to compatible minor version branches
10
+ name: Mirror 1.4.x branch to compatible version branches
11
strategy:
12
fail-fast: false
13
matrix:
14
dest_branch:
- - '1.4.x'
15
+ - '1.x'
16
steps:
17
- name: Mirror action step
18
id: mirror
19
uses: eProsima/eProsima-CI/external/mirror-branch-action@v0
20
with:
21
github-token: ${{ secrets.GITHUB_TOKEN }}
- source: 'main'
22
+ source: '1.4.x'
23
dest: ${{ matrix.dest_branch }}
0 commit comments