Override Jenkins Parameter Value from GitLab Webhook |

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ก.ย. 2024
  • Hi Techies,
    So in this video I am showing that how you can override Jenkins Parameter Value from GitLab Webhook Url. It is very easy I am sure after watching this video you will definitely able to override value from GitLab.
    If you want to setup jenkins then you can watch this video - • Integration of Jenkins...
    Thanks for watching my videos.
    Please do like and subscribe!
    #jenkinstutorial #gitlab #techiehood #jenkins #automation #cicd #devops

ความคิดเห็น • 3

  • @ShubhamGupta-mu3xf
    @ShubhamGupta-mu3xf 11 หลายเดือนก่อน

    How can I dynamically determine the branch name that has been pushed to another branch without hardcoding it in the webhook URL in Gitlab?

    • @techiehood
      @techiehood  11 หลายเดือนก่อน +2

      your-webhook-url.com/branch_name=${CI_COMMIT_REF_NAME}
      In this, ${CI_COMMIT_REF_NAME} is a predefined variable that will be replaced with the actual branch name when the webhook is triggered.
      When you push changes to any branch in your GitLab project, the webhook will be triggered, and the ${CI_COMMIT_REF_NAME} variable will be replaced with the branch name that triggered the webhook.

    • @prashanthselvaraj7771
      @prashanthselvaraj7771 หลายเดือนก่อน

      What if I can select the values from a dropdown list instead of editing the webhook url