0

I have a Jenkins job outside my workplace network that creates artifacts and these are copied to my company artifactory. from there will run bamboo plan to deploy. 1)how can I search for new artifacts in artifactory to automatically start bamboo plan 2) how can we automate this process

kumar8891
  • 53
  • 1
  • 7

1 Answers1

3

I think the answer here is a User-Plugin (examples). You should probably write a user-plugin that will listen to an afterCreate event and then trigger a REST call to the Bamboo server to trigger the build (probably via the Build Queue Service)

Hope this helps.

eranb
  • 634
  • 3
  • 6
  • 1
    You can specifically use the Webhook plugin for this - https://github.com/jfrog/artifactory-user-plugins/tree/master/webhook – Adi Vizgan Dec 01 '19 at 11:51