Prevent update check for specific theme

Yes, you can disable auto update by adding this line of code in your wp-config.php file:

define( 'WP_AUTO_UPDATE_CORE', false );

OR Disable automatic WordPress theme updates by adding the following filters in your functions.php

add_filter( 'auto_update_theme', '__return_false' );