diff --git a/core/modules/action/action.info.yml b/core/modules/action/action.info.yml
index 7559efbcb2..2a31ec3e28 100644
--- a/core/modules/action/action.info.yml
+++ b/core/modules/action/action.info.yml
@@ -1,4 +1,4 @@
-name: Actions
+name: Actions UI
 type: module
 description: 'Perform tasks on specific events triggered within the system.'
 package: Core
diff --git a/core/modules/action/action.module b/core/modules/action/action.module
index 8d162615ea..c1f0586cd6 100644
--- a/core/modules/action/action.module
+++ b/core/modules/action/action.module
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * This is the Actions module for executing stored actions.
+ * This is the Action UI module for executing stored actions.
  */
 
 use Drupal\Core\Url;
@@ -18,13 +18,13 @@ function action_help($route_name, RouteMatchInterface $route_match) {
     case 'help.page.action':
       $output = '';
       $output .= '<h3>' . t('About') . '</h3>';
-      $output .= '<p>' . t('The Actions module provides tasks that can be executed by the site such as unpublishing content, sending email messages, or blocking a user. Other modules can trigger these actions when specific system events happen; for example, when new content is posted or when a user logs in. Modules can also provide additional actions. For more information, see the <a href=":documentation">online documentation for the Actions module</a>.', [':documentation' => 'https://www.drupal.org/documentation/modules/action']) . '</p>';
+      $output .= '<p>' . t('The Actions UI module provides tasks that can be executed by the site such as unpublishing content, sending email messages, or blocking a user. Other modules can trigger these actions when specific system events happen; for example, when new content is posted or when a user logs in. Modules can also provide additional actions. For more information, see the <a href=":documentation">online documentation for the Actions UI module</a>.', [':documentation' => 'https://www.drupal.org/documentation/modules/action']) . '</p>';
       $output .= '<h3>' . t('Uses') . '</h3>';
       $output .= '<dl>';
       $output .= '<dt>' . t('Using simple actions') . '</dt>';
-      $output .= '<dd>' . t('<em>Simple actions</em> do not require configuration and are listed automatically as available on the <a href=":actions">Actions page</a>.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '</dd>';
+      $output .= '<dd>' . t('<em>Simple actions</em> do not require configuration and are listed automatically as available on the <a href=":actions">Actions UI page</a>.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '</dd>';
       $output .= '<dt>' . t('Creating and configuring advanced actions') . '</dt>';
-      $output .= '<dd>' . t('<em>Advanced actions</em> are user-created and have to be configured individually. Create an advanced action on the <a href=":actions">Actions page</a> by selecting an action type from the drop-down list. Then configure your action, for example by specifying the recipient of an automated email message.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '</dd>';
+      $output .= '<dd>' . t('<em>Advanced actions</em> are user-created and have to be configured individually. Create an advanced action on the <a href=":actions">Actions UI page</a> by selecting an action type from the drop-down list. Then configure your action, for example by specifying the recipient of an automated email message.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '</dd>';
       $output .= '</dl>';
       return $output;
 
diff --git a/core/modules/action/action.routing.yml b/core/modules/action/action.routing.yml
index 3a3f8203ac..cc6e44d263 100644
--- a/core/modules/action/action.routing.yml
+++ b/core/modules/action/action.routing.yml
@@ -1,7 +1,7 @@
 entity.action.collection:
   path: '/admin/config/system/actions'
   defaults:
-    _title: 'Actions'
+    _title: 'Actions UI'
     _entity_list: 'action'
   requirements:
     _permission: 'administer actions'
