Merge "Testing shared libraries in ci-management repo"
diff --git a/vars/hello.groovy b/vars/hello.groovy
new file mode 100644
index 0000000..b40894b
--- /dev/null
+++ b/vars/hello.groovy
@@ -0,0 +1,6 @@
+// vars/sayHello.groovy
+def call(String name = 'human') {
+    // Any valid steps can be called from this code, just like in other
+    // Scripted Pipeline
+    echo "Hello, ${name}."
+}