diff --git a/Jenkinsfile b/Jenkinsfile
index 8d6dfeec1a8e779a15eb29eccde2548ecb5b750b..b15672bf7da977b8dd8c5a5bc8dd7041465c29eb 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,3 +1,14 @@
+// https://gitlab.geant.net/live-projects/jenkins-pipeline/-/tree/master/vars
 library 'SWDPipeline'
 
-SimplePythonBuild('geant-service-orchestrator');
+// Parameters:
+// name (must match the name of the project in GitLab/SWD release jenkins)
+String name = 'geant-service-orchestrator'
+
+// emails of people to always notify on build status changes
+List<String> extraRecipients = ['erik.reid@geant.org']
+
+// python versions (docker tags) to test against, must be explicit versions
+List<String> pythonTestVersions = ['3.11']
+
+SimplePythonBuild(name, extraRecipients, pythonTestVersions)