feat(ci): add retry configuration for CI jobs

Adds a default retry configuration for CI jobs to handle  
various failure scenarios. This improves the robustness of  
the pipeline by allowing automatic retries for jobs that  
fail due to temporary issues.
This commit is contained in:
2025-04-30 16:46:11 +02:00
parent 16c6dfd04d
commit 57400b0223
+9
View File
@@ -0,0 +1,9 @@
default:
retry:
max: 2
when:
- "unknown_failure"
- "runner_system_failure"
- "stuck_or_timeout_failure"
- "scheduler_failure"
- "job_execution_timeout"