{% if not github_configured %}
GitHub App is not configured. Set up GitHub integration in environment settings.
{% elif error %}
Failed to load repositories: {{ error }}
Try typing again to retry.
{% elif current_value and current_value not in (results | map(attribute='full_name') | list) %}
{{ current_value }} (current — may no longer be accessible)
{% for repo in results %}
{{ repo.full_name }}
{% if repo.description %}
{{ repo.description }}
{% endif %}
{% endfor %} {% elif results %} {% for repo in results %}
{{ repo.full_name }}
{% if repo.description %}
{{ repo.description }}
{% endif %}
{% endfor %} {% elif query %}
No repositories matching "{{ query }}"
{% else %}
No accessible repositories found
{% endif %}