Hello, team. Afternoon. I have a quick question, t...
# general
j
Hello, team. Afternoon. I have a quick question, to trigger Provider Verification as part of consumer pipeline, can we simply use Jenkins build job trigger instead of using Webhooks? Are there any drawbacks in this approach? Please advise. Thanks. Something like this -
Copy code
stage ('Provider Verification') {
            steps {
                build job: 'providerVerificationPipeline'
            }
m
You can. The webhookless flow uses this pattern: https://docs.pact.io/pact_nirvana/step_6#alternative-webhookless-workflow
j
Thanks, will have a look.