


Recently I have observed that one of prod pipeline got triggered and deployment happened.
But no one triggered it manually and trigger is "Git Commit"
So I want to know is there any way we get to know who triggered the pipeline.
where can see the user activity.
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @ganeshbyalebrillio ,
Please check in Cloud Manager 'Activity' tab to get the current pipeline execution details and also the previous pipeline histories.
If it's not sufficient, make use of Adobe Cloud Manager API Playground to get the pipeline execution details. Replace program id, pipeline id and execution id with yours.
https://www.adobe.io/experience-cloud/cloud-manager/reference/playground/#/api/program/{program id}/pipeline/{pipeline id}/execution/{execution id}
and check in below json keys.
"trigger": "MANUAL", "user": "12333456@AdobeID",
Hi @ganeshbyalebrillio ,
Please check in Cloud Manager 'Activity' tab to get the current pipeline execution details and also the previous pipeline histories.
If it's not sufficient, make use of Adobe Cloud Manager API Playground to get the pipeline execution details. Replace program id, pipeline id and execution id with yours.
https://www.adobe.io/experience-cloud/cloud-manager/reference/playground/#/api/program/{program id}/pipeline/{pipeline id}/execution/{execution id}
and check in below json keys.
"trigger": "MANUAL", "user": "12333456@AdobeID",
Thanks for the reply.
It worked for me
Check for the https://www.adobe.io/experience-cloud/cloud-manager/reference/playground/#/api/program/{program_id}/...
Validate the Json with the trigger property as below
Thanks for the reply.
It worked for me.