Skip to content

Commit bac4e80

Browse files
Fix return value of format_ci_details() (#21)
Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>
1 parent b7cec31 commit bac4e80

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ros_github_scripts/ci_for_pr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,12 +224,12 @@ def format_ci_details(
224224
details.append(f'Gist: {gist_url}')
225225
if branch_name:
226226
details.append(f'Branch: {branch_name}')
227-
return details + [
227+
return '\n'.join(details + [
228228
f'BUILD args: {extra_build_args}',
229229
f'TEST args: {extra_test_args}',
230230
f'ROS Distro: {target_release}',
231231
'Job: {}'.format(DEFAULT_JOB),
232-
]
232+
])
233233

234234

235235
def run_jenkins_build(

0 commit comments

Comments
 (0)