TL;DR: The bot is configured to condense certain instances and communities. At the moment, only beehaw.org is marked to be condensed.
Quickly looking at the source code, it seems ReplyToPostsCommand uses a SummaryTextWrapper, which contains an iterable for both CondensedSummaryTextWrapperProvider and DefaultSummaryTextWrapperProvider. The DefaultSummaryTextWrapperProvider has a priority of -1_000 (so it’s always checked last) and is set to always return true on the supports(Community $community): bool. CondensedSummaryTextWrapperProvider references the config/services.yaml for it’s supports(Community $community): bool call which lists 0 condensed communities and 1 condensed instance, being beehaw.org.
Why is it sometimes hidden by a dropdown, and sometimes the summary is just in the comment?
TL;DR: The bot is configured to condense certain instances and communities. At the moment, only beehaw.org is marked to be condensed.
Quickly looking at the source code, it seems
ReplyToPostsCommanduses aSummaryTextWrapper, which contains an iterable for bothCondensedSummaryTextWrapperProviderandDefaultSummaryTextWrapperProvider. TheDefaultSummaryTextWrapperProviderhas a priority of-1_000(so it’s always checked last) and is set to always returntrueon thesupports(Community $community): bool.CondensedSummaryTextWrapperProviderreferences the config/services.yaml for it’ssupports(Community $community): boolcall which lists 0 condensed communities and 1 condensed instance, being beehaw.org.