Use a variable inside include?

How can I do something like this: {% include ‘partials/{{ header.title }}.html.twig’ %} ?

{% include 'partials/' ~ header.title ~ '.html.twig' %}

thank you very much!