action_scheduler_deleted_action action-hookWC 1.0

Usage

add_action( 'action_scheduler_deleted_action', 'wp_kama_action_scheduler_deleted_action' );

/**
 * Function for `action_scheduler_deleted_action` action-hook.
 * 
 * @param  $action_id 
 *
 * @return void
 */
function wp_kama_action_scheduler_deleted_action( $action_id ){

	// action...
}
$action_id
-

Where the hook is called

ActionScheduler_DBStore::delete_action()
action_scheduler_deleted_action
ActionScheduler_wpPostStore::delete_action()
action_scheduler_deleted_action

Where the hook is used in WooCommerce

woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_DBLogger.php 112
add_action( 'action_scheduler_deleted_action', array( $this, 'clear_deleted_action_logs' ), 10, 1 );