Skip to content

Commit 59cd01c

Browse files
committed
chore(ci): links
1 parent 9971ed7 commit 59cd01c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dogfood.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,15 @@ jobs:
153153
const results = [];
154154
for (const { repo, workflow, inputs } of dispatches) {
155155
try {
156-
const repoLink = `[supabase/${repo}](https://github.com/supabase/${repo}/pulls)`;
156+
const repoLink = `<a href="https://github.com/supabase/${repo}/pulls">supabase/${repo}</a>`;
157157
results.push(`✅ ${repoLink} — ${workflow}`);
158158
} catch (error) {
159-
const repoLink = `[supabase/${repo}](https://github.com/supabase/${repo}/pulls)`;
159+
const repoLink = `<a href="https://github.com/supabase/${repo}/pulls">supabase/${repo}</a>`;
160160
results.push(`❌ ${repoLink} — ${workflow}: ${error.message}`);
161161
}
162162
}
163163
164164
core.summary.addHeading('Dogfood Dispatch Results', 2);
165-
core.summary.addRaw(results.map(r => `- ${r}`).join('\n'));
165+
core.summary.addList(results);
166166
await core.summary.write();
167167
console.log(results.join('\n'));

0 commit comments

Comments
 (0)