I just did something similar where I wanted my blog to include project logs with blog posts.
I used
{% set project_logs = get_section(path="projects/_index.md") %}
{% for page in section.pages | concat(with=project_logs.pages) %}
Based on this post: Merging sections into single loop - #5 by jamiedumont