{% icon "mdi:person-heart" %} Integration owners
{% if page.ha_codeowners %}
{% assign ha_project = false %}
{% for codeowner in page.ha_codeowners %}
{% if codeowner contains "@home-assistant/" %}
{% assign ha_project = true %}
{% endif %}
{% endfor %}
{% if ha_project %}
This integration is being maintained by the Home Assistant project.
{% else %}
We are incredibly grateful to the following contributors who currently maintain this integration:
{%- for codeowner in page.ha_codeowners -%}
{%- assign clean_codeowner = codeowner | replace: "@", "" -%}
{{ codeowner }}
{%- endfor -%}
{% endif %}
{% else %}
This integration is community maintained.
If you are a developer and would like to help, feel free to contribute!
{% endif %}