pipeline { agent any stages { stage('Example Stage') { environment { REPO ='example' } steps { git "git@example.org:user/$REPO.git" } } }