Skip to content

Commit

Permalink
chore: amend link
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma11hewThomas committed May 29, 2024
1 parent 4d2dbb5 commit b25a381
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/summary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function generateTestDetailsTable(tests: CtrfTest[]): void {
]);

core.summary.addTable([headers, ...rows])
.addLink('A ctrf plugin', 'https://ctrf.io')
.addLink('A ctrf plugin', 'https://github.com/ctrf-io/github-actions-ctrf')


} catch (error) {
Expand Down Expand Up @@ -59,7 +59,7 @@ export function generateFlakyTestsDetailsTable(tests: CtrfTest[]): void {
]);

core.summary.addTable([headers, ...rows])
.addLink('A ctrf plugin', 'https://ctrf.io');
.addLink('A ctrf plugin', 'https://github.com/ctrf-io/github-actions-ctrf');
} else {
core.summary.addRaw('No flaky tests detected. ✨');
}
Expand Down Expand Up @@ -89,7 +89,7 @@ export function generateFailedTestsDetailsTable(tests: CtrfTest[]) {
{ data: `${test.message}`, header: false }
])
])
.addLink('A ctrf plugin', 'https://ctrf.io')
.addLink('A ctrf plugin', 'https://github.com/ctrf-io/github-actions-ctrf')
} else {
core.summary.addRaw('No failed tests ✨');
}
Expand Down Expand Up @@ -127,7 +127,7 @@ export function generateSummaryDetailsTable(report: CtrfReport): void {
durationFormatted,
]
])
.addLink('A ctrf plugin', 'https://ctrf.io')
.addLink('A ctrf plugin', 'https://github.com/ctrf-io/github-actions-ctrf')
} catch (error) {
if (error instanceof Error) {
core.setFailed(`Failed to append to job summary: ${error.message}`);
Expand Down

0 comments on commit b25a381

Please sign in to comment.