Remove JIT config from ephemeral runner status field (#4191)

This commit is contained in:
Nikola Jokic
2025-08-04 12:35:04 +02:00
committed by GitHub
parent 52d65c333b
commit c27541140a
6 changed files with 116 additions and 103 deletions

View File

@@ -0,0 +1,12 @@
package actionsgithubcom
type controllerError string
func (e controllerError) Error() string {
return string(e)
}
const (
retryableError = controllerError("retryable error")
fatalError = controllerError("fatal error")
)