File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 3
3
push :
4
4
branches :
5
5
- ' master'
6
+ - ' 1.1.x'
6
7
jobs :
7
- mirror_job :
8
+ mirror_job_master :
9
+ if : github.ref == 'refs/heads/master'
8
10
runs-on : ubuntu-latest
9
11
name : Mirror master branch to API & ABI compatible minor version branches
10
12
strategy :
11
13
fail-fast : false
12
14
matrix :
13
15
dest_branch :
14
16
- ' 2.2.x'
17
+ - ' 2.x'
15
18
steps :
16
19
- name : Mirror action step
17
20
id : mirror
20
23
github-token : ${{ secrets.GITHUB_TOKEN }}
21
24
source : ' master'
22
25
dest : ${{ matrix.dest_branch }}
26
+ mirror_job_1_x :
27
+ if : github.ref == 'refs/heads/1.1.x'
28
+ runs-on : ubuntu-latest
29
+ name : Mirror 1.1.x branch to API & ABI compatible minor version branches
30
+ strategy :
31
+ fail-fast : false
32
+ matrix :
33
+ dest_branch :
34
+ - ' 1.x'
35
+ steps :
36
+ - name : Mirror action step
37
+ id : mirror
38
+ uses : eProsima/eProsima-CI/external/mirror-branch-action@v0
39
+ with :
40
+ github-token : ${{ secrets.GITHUB_TOKEN }}
41
+ source : ' 1.1.x'
42
+ dest : ${{ matrix.dest_branch }}
You can’t perform that action at this time.
0 commit comments