{% extends "base.html" %} {% block title %}Repository Configuration - GitHub to Gitea Mirror{% endblock %} {% block content %}

Repository Configuration

{{ gitea_owner }}/{{ gitea_repo }}

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
Repository Status

GitHub Repository: {{ github_repo }}

Gitea Repository: {{ gitea_owner }}/{{ gitea_repo }}

Last Mirror: {{ config.last_mirror_date|default('Never') }} {% if config.last_mirror_status == 'success' %} Success {% elif config.last_mirror_status == 'warning' %} Warning {% elif config.last_mirror_status == 'error' %} Error {% endif %}

Mirror Type: Pull Mirror

{% if config.last_mirror_messages and config.last_mirror_messages|length > 0 %}
Last Mirror Messages:
    {% for message in config.last_mirror_messages %}
  • {% if config.last_mirror_log %} {{ message }} {% else %} {{ message }} {% endif %}
  • {% endfor %}
{% endif %}
Mirroring Configuration
Mirror Metadata
Enable mirroring of metadata (issues, PRs, labels, etc.) from GitHub to Gitea
Metadata Components
Mirror Issues
Mirror Pull Requests
Mirror Labels
Mirror Milestones
Mirror Wiki
Mirror Releases
Enable mirroring of releases from GitHub to Gitea
Manual Actions
Include Metadata
Include Releases
Destructive Actions
Warning! The actions below are destructive and cannot be undone. Proceed with caution.
Delete All Issues and Pull Requests

This will delete or close all issues and pull requests in the Gitea repository. This is useful for cleaning up duplicate issues.

{% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}