I have a plugin to do some activity on the following events.
- Repository Creation
- Branch Creation
- Branch Deletion
- Repository Deletion
For Repository Creation, I am using RepositoryCreatedEvent with onRepositoryCreatedEvent event listener
for branch creation, I am using BranchCreatedEvent with onBranchCreatedEvent event listener
for branch deletion, I am using BranchDeletedEvent with onBranchDeleteEvent event listener
all the above the listeners are working as expected, I was able to perform my activity once the event listener listened. however for the repository deletion, I am using RepositoryDeletedEvent with onRepositoryDeletedEvent event listener, this is not working for me.
I am in bitbucket dc 8.9.4, amps version is 8.10.1
any help is much appreciated.