Para listar cada evento “resolvido” individualmente, você pode usar uma consulta como esta:
SELECT
acting_user_id,
target_topic_id AS topic_id,
target_post_id,
created_at::date
FROM user_actions
WHERE action_type=15
ORDER BY created_at DESC