How to Set Up GitHub Webhooks to Trigger a Jenkins Pipeline

sriram ravisriram ravi
1 min read

  1. Create a pipeline item.

  2. Go to pipeline syntax.

  3. Go to snippet generator → Select checkout from version control system in sample step → Enter the repository url(if you account is private you can give username and password).

  4. Copy the pipeline script and paste it inside your pipeline script.

     pipeline {
         agent any
    
         stages {
             stage('git hub webhook') {
                 steps {
                     checkout scmGit(branches: [[name: '*/main']], extensions: [], userRemoteConfigs: [[url: 'https://github.com/sriram-ravi705/NodeApp.git']])
                 }
             }
         }
     }
    
  5. Go to github repository → settings.

  6. go to webhooks → click add webhooks.

  7. enter payload url → http://{pulic_ip_address:port}/github-webhook.

  8. enter secret → paste the access token.

  9. click add webhook.

  10. push code to github repository and check new build is running.

0
Subscribe to my newsletter

Read articles from sriram ravi directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

sriram ravi
sriram ravi