diff --git a/app/models/concerns/has_user_type.rb b/app/models/concerns/has_user_type.rb
index 9f599ac18599867633d3afc74c14e3c63fca5612..204dbda801364d78f648c753e3539a84dd6b506f 100644
--- a/app/models/concerns/has_user_type.rb
+++ b/app/models/concerns/has_user_type.rb
@@ -42,6 +42,7 @@ module HasUserType
 
   # `service_account` allows instance/namespaces to configure a user for external integrations/automations
   # `service_user` is an internal, `gitlab-com`-specific user type for integrations like suggested reviewers
+  # Changes to these types might have billing implications, https://docs.gitlab.com/ee/subscriptions/gitlab_com/#billable-users
   NON_INTERNAL_USER_TYPES = %w[human project_bot service_user service_account].freeze
   INTERNAL_USER_TYPES = (USER_TYPES.keys - NON_INTERNAL_USER_TYPES).freeze