The Release Bundle v2 domain includes events that are triggered when attempting to create a Release Bundle v2.
Important
Artifactory 7.125.3 and later support the creation of webhooks for Release Bundle v2 versions within a specific project.
Event: Release Bundle v2 creation started
This Webhook is triggered when the creation of a Release Bundle v2 version begins. You can choose whether to apply the Webhook to all Release Bundles or only to selected ones.
{
"domain": "release_bundle_v2",
"event_type": "release_bundle_v2_started",
"data": {
"repository_key": "repo-key",
"release_bundle_name": "release-bundle-1",
"release_bundle_version": "1.0.0",
"created": "2022-10-10T15:36:04.894+03:00\"
},
"subscription_key": "test",
"jpd_origin": "https://<your_origin>",
"source": "jfrog/<your_source>"
}Event: Release Bundle v2 creation failed
This Webhook is triggered when the creation of a Release Bundle v2 version fails. You can choose whether to apply the Webhook to all Release Bundles or only to selected ones.
{
"domain": "release_bundle_v2",
"event_type": "release_bundle_v2_failed",
"data": {
"repository_key": "repo-key",
"release_bundle_name": "release-bundle-1",
"release_bundle_version": "1.0.0"
"created": "2022-10-10T15:36:04.894+03:00\"
},
"subscription_key": "test",
"jpd_origin": "https://<your_origin>",
"source": "jfrog/<your_source>"
}Event: Release Bundle v2 creation completed
This Webhook is triggered when the creation of a Release Bundle v2 is completed. You can choose whether to apply the Webhook to all Release Bundles or only to selected ones.
{
"domain": "release_bundle_v2",
"event_type": "release_bundle_v2_completed",
"data": {
"repository_key": "repo-key",
"release_bundle_name": "release-bundle-1",
"release_bundle_version": "1.0.0"
"created": "2022-10-10T15:36:04.894+03:00\"
},
"subscription_key": "test",
"jpd_origin": "https://<your_origin>",
"source": "jfrog/<your_source>"
}Note
Only platform administrators can create Webhook events that apply to Release Bundles in specific projects. Project administrators cannot create these types of events.