pipeline {
  agent any
  stages {
    stage('Specs') {
      steps {
        checkout([
          $class: 'GitSCM', 
          branches: [[name: '*/master']], 
          browser: [$class: 'GithubWeb', repoUrl: 'https://github.com/puppetlabs/pe_installer'],
          doGenerateSubmoduleConfigurations: false,
          extensions: [],
          submoduleCfg: [],
          userRemoteConfigs: [[url: 'git@github.com:puppetlabs/pe_installer.git']]])
      }
    }
    stage('Promote') {
      steps {
        sh "echo 'Promoting...'"
      }
    }
  }
}