0

New to CI/CD Integration. I want to trigger a Git Action after a Jenkins Job ("Example Jenkins Job") already configured in my CI/CD pipeline completes. I do not want to trigger the action from the jenkins script itself.

I've looked at Github Actions - trigger another action after one action is completed, but my question differs as the desire is to trigger the action only after the successful completion of my Jenkins Job, not another Git Action.

Are there any examples of how to do this?

enter image description here

Kode_12
  • 4,506
  • 11
  • 47
  • 97

1 Answers1

0

You can send HTTP Request from jenkins to trigger github action - https://dev.to/rikurouvila/how-to-trigger-a-github-action-with-an-htt-request-545

mhld
  • 163
  • 2
  • 9
  • Thanks but I don’t want to trigger the action from Jenkins – Kode_12 Jun 28 '23 at 21:18
  • 1
    Pipeline runs in github are called "Checks" and "Statuses". This topic should help you - https://stackoverflow.com/questions/59595803/how-to-trigger-github-workflow-after-a-check-suite-finishes – mhld Jun 28 '23 at 21:23