chore: linkify Test results title (#24220)
This commit is contained in:
parent
33bab3652d
commit
5ccd4b0632
8
.github/workflows/create_test_report.yml
vendored
8
.github/workflows/create_test_report.yml
vendored
|
|
@ -97,10 +97,10 @@ jobs:
|
||||||
...context.repo,
|
...context.repo,
|
||||||
issue_number: prNumber,
|
issue_number: prNumber,
|
||||||
body: [
|
body: [
|
||||||
`### Test results for "${{ github.event.workflow_run.name }}"`,
|
`### [Test results](${reportUrl}) for "${{ github.event.workflow_run.name }}"`,
|
||||||
reportMd,
|
reportMd,
|
||||||
'---',
|
'---',
|
||||||
`Full [html report](${reportUrl}).`
|
`Merge [workflow run](${mergeWorkflowUrl}).`
|
||||||
].join('\n'),
|
].join('\n'),
|
||||||
});
|
});
|
||||||
core.info('Posted comment: ' + response.html_url);
|
core.info('Posted comment: ' + response.html_url);
|
||||||
|
|
@ -114,11 +114,11 @@ jobs:
|
||||||
conclusion: 'success',
|
conclusion: 'success',
|
||||||
details_url: reportUrl,
|
details_url: reportUrl,
|
||||||
output: {
|
output: {
|
||||||
title: 'Test results for "${{ github.event.workflow_run.name }}"',
|
title: '[Test results](${reportUrl}) for "${{ github.event.workflow_run.name }}"',
|
||||||
summary: [
|
summary: [
|
||||||
reportMd,
|
reportMd,
|
||||||
'---',
|
'---',
|
||||||
`Full [html report](${reportUrl}). Merge [workflow run](${mergeWorkflowUrl}).`
|
`Merge [workflow run](${mergeWorkflowUrl}).`
|
||||||
].join('\n'),
|
].join('\n'),
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue