commit 85c40aed838e92d9f7baffe342e5a4fe17c3a1f4
Author: weissmall <dany.small.work@gmail.com>
Date:   Fri Dec 1 14:33:31 2023 +0300

    Initial commit

diff --git a/helpers.groovy b/helpers.groovy
new file mode 100644
index 0000000..0678ed4
--- /dev/null
+++ b/helpers.groovy
@@ -0,0 +1,6 @@
+def stageWithChecks(String name, Closure body) {
+  stage(name) {
+    body()
+    setSuccessCheck(name, name)
+  }
+}
\ No newline at end of file