Build Result Save extension point?
3 answers
Actually, saving build items is a process-controlled operation, so you could add a precondition or follow-up action.
The operation id is "com.ibm.team.build.server.saveBuildResult", but if it's creating a release that you're after, that doesn't actually modify the build result (other than marking it as not to be deleted), it creates a separate kind of item for the release: an com.ibm.team.workitem.common.model.IDeliverable item, which refers to the build as its artifact property. Saving a deliverable is controlled by the Work Item's Save Deliverable operation, id: "com.ibm.team.workitem.server.saveDeliverable".
Can you say more about what you're trying to do?