diff --git a/src/nomad_tools/entry_githubrunner.py b/src/nomad_tools/entry_githubrunner.py index cb3e747..269976d 100644 --- a/src/nomad_tools/entry_githubrunner.py +++ b/src/nomad_tools/entry_githubrunner.py @@ -154,7 +154,6 @@ class LimitConfig(DataDict): max: int = -1 """Maximum number of running runners""" - class Config(DataDict): """Configuration""" @@ -189,7 +188,7 @@ class Config(DataDict): You can use for example ".*self-hosted.*" for all-catch. """ - runner_inactivity_timeout: str = "5m" + runner_inactivity_timeout: str = "1h" """How much time a runner will be inactive for it to be removed?""" limits: List[LimitConfig] = [] @@ -199,9 +198,9 @@ class Config(DataDict): "job": "", "group": "", "task": "", - "ephemeral": "false", + "ephemeral": False, } - """Additoinal template variable passed as 'add' global variable.""" + """Additional template variable passed as 'add' global variable.""" def __post_init__(self): assert self.loop >= 0