action_scheduler_reset_action action-hookWC 1.0

Usage

add_action( 'action_scheduler_reset_action', 'wp_kama_action_scheduler_reset_action' );

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

	// action...
}
$action_id
-

Where the hook is called

ActionScheduler_QueueCleaner::reset_timeouts()
action_scheduler_reset_action
woocommerce/packages/action-scheduler/classes/ActionScheduler_QueueCleaner.php 174
do_action( 'action_scheduler_reset_action', $action_id );

Where the hook is used in WooCommerce

woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php 56
add_action( 'action_scheduler_reset_action', array( $this, 'log_reset_action' ), 10, 1 );