diff --git a/src/wp-admin/includes/post.php b/src/wp-admin/includes/post.php
index 187c013031..c75c39b681 100644
--- a/src/wp-admin/includes/post.php
+++ b/src/wp-admin/includes/post.php
@@ -624,6 +624,16 @@ function bulk_edit_posts( $post_data = null ) {
 		}
 	}
 
+	/**
+ 	* Execute an action with all the post data processed by `bulk_edit_posts`.
+ 	*
+ 	* @since 5.0.3
+ 	*
+ 	* @param array $post_data Associative array containing the post data.
+ 	*/
+
+	do_action( 'bulk_edit_posts', $post_data );
+
 	return array(
 		'updated' => $updated,
 		'skipped' => $skipped,
