Create a pipeline project in Jenkins

  • Release version: Zurich
  • Updated March 28, 2026
  • 1 minute to read
  • Create a pipeline projects in Jenkins to add the endpoint URL in Jenkinsfile that is generated in your ServiceNow instance and enable webhooks to connect with your ServiceNow instance.

    Before you begin

    • Ensure that you install Jenkin in the local environment.
    • Ensure that Maven and GitHub are installed in the Jenkins account.
    • Ensure that these plugins are installed in the Jenkins account.
      • Pipeline
      • Git plugin
      • Git client
      • Http request
      • Credentials
      • Warnings
      • Coverage
    • In GitHub, generate a classic personal access token and copy the value.
      Ensure that you select the scopes for the personal access token.
      • repo
        • repo:status
        • repo_deployment
        • public_repo
        • repo:invite
        • security_events
      • write:packages
        • read:packages

      For more information about creating a classic personal access token, see Creating a personal access token (classic) in GitHub Docs.

      For the list of supported events, see the Spoke triggers section.

    • Role required: admin

    Procedure

    1. From the Jenkins Dashboard, select + New Item.
    2. On the form, enter a name to identify the pipeline and select Pipeline.
    3. Click OK.
      The pipeline is created and its configuration options are displayed.
    4. Under Configure, click Pipeline.
    5. On the form, fill these values.
      Field Description
      Definition Select Pipeline script from SCM.
      SCM Select Git.
      Repository URL Provide GitHub repository URL.
      Credentials Create the GitHub credential record and select it.
      1. Click +Add.
      2. Select Username with password and click Next.
      3. For Username, enter the GitHub username.
      4. For Password, paste the personal access token that is generated in GitHub.
      5. For ID, provide a unique ID to identify the credentials.
      6. For Description, enter a description for the credentials.
      7. Click Create.
      8. Select this record for Credentials.
      Branch Specifier (blank for 'any') Specify the required branch.
      Script path Relative location within the checkout of your Pipeline script.
      Important:
      In Jenkinsfile, paste the endpoint URL that was generated after you configured triggers in your ServiceNow instance. For more information, see Configure triggers in ServiceNow instance.

    6. Click Save.