repro-run/gitea-ci/run.html
Nulo 85f1a81ecc
Some checks failed
repro-run Corre repro-run.json
permitir variables de entorno (para secretos)
2023-01-26 16:13:52 -03:00

14 lines
368 B
HTML

<!DOCTYPE html>
<meta charset="utf-8" />
<pre></pre>
<script>
const el = document.querySelector("pre");
const id = location.hash.slice(1);
const ws = new WebSocket(
location.origin.replace(/^http/, "ws") + "/logs/socket/" + id
);
window.ws = ws;
ws.addEventListener("message", async (event) => {
el.append(await event.data.text());
});
</script>