File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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'));
You can’t perform that action at this time.
0 commit comments