Skip to content

Commit 39951e5

Browse files
authored
Fix CI external repo getters (#498)
Signed-off-by: Jesus Perez <[email protected]>
1 parent 676cb81 commit 39951e5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/reusable-ubuntu-ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,27 +129,31 @@ jobs:
129129
with:
130130
remote_repository: eProsima/Fast-DDS
131131
fallback_branch: ${{ inputs.fastdds-branch }}
132+
skip_base: true
132133

133134
- name: Get Fast CDR branch
134135
id: get_fastcdr_branch
135136
uses: eProsima/eProsima-CI/ubuntu/get_related_branch_from_repo@v0
136137
with:
137138
remote_repository: eProsima/Fast-CDR
138139
fallback_branch: ${{ inputs.fastcdr-branch }}
140+
skip_base: true
139141

140142
- name: Get Fast DDS Python branch
141143
id: get_fastdds_python_branch
142144
uses: eProsima/eProsima-CI/ubuntu/get_related_branch_from_repo@v0
143145
with:
144146
remote_repository: eProsima/Fast-DDS-python
145-
fallback_branch: main
147+
fallback_branch: ${{ inputs.fastdds-python-branch }}
148+
skip_base: true
146149

147150
- name: Get Discovery Server branch
148151
id: get_discovery_server_branch
149152
uses: eProsima/eProsima-CI/ubuntu/get_related_branch_from_repo@v0
150153
with:
151154
remote_repository: eProsima/Discovery-Server
152-
fallback_branch: master
155+
fallback_branch: ${{ inputs.discovery-server-branch }}
156+
skip_base: true
153157

154158
- name: Download Fast CDR, Fast DDS Python, and Discovery Server
155159
run: |

0 commit comments

Comments
 (0)