function set_image_alt_on_upload( $post_ID ) {
if ( wp_attachment_is_image( $post_ID ) ) {
$attachment = get_post( $post_ID );
$parent_post = get_post( $attachment->post_parent );
update_post_meta( $post_ID, '_wp_attachment_image_alt', $parent_post->post_title );
}
}
add_action( 'add_attachment', 'set_image_alt_on_upload' );