feat(jobs/runners): workspace fetch runner with notify dispatch on failure

This commit is contained in:
2026-05-05 23:35:58 +08:00
parent e361670539
commit af1855b753
3 changed files with 223 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package runners_test
import (
"io"
"log/slog"
)
func discardLogger() *slog.Logger {
return slog.New(slog.NewTextHandler(io.Discard, nil))
}