{% extends "base.html" %} {% block title %} {{ _("Configure Git Update Detection") }} - {{ package.title }} {% endblock %} {% block content %}

{{ _("Configure Git Update Detection") }}

{{ _("When you push a change to your Git repository, ContentDB can create a new release automatically or send you a reminder.") }}

{{ _("ContentDB will poll your Git repository every day, if your package is approved.") }} {{ _("You should consider using webhooks or the API for faster releases.") }}

{% if package.checkPerm(current_user, "APPROVE_RELEASE") and package.getIsOnGitHub() %}

{{ _("Learn more") }} {{ _("You can create releases faster by using a webhook or the API.") }}

{% endif %} {% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field %}
{{ form.hidden_tag() }} {{ render_field(form.trigger, class_="mt-5") }} {{ render_field(form.ref, placeholder="Leave blank to use default branch", pattern="[A-Za-z0-9/._-]+") }}

{{ _("Currently, the branch name field is only used by the New Commit trigger.") }}

{{ render_field(form.action) }}

{{ render_submit_field(form.submit) }} {{ render_submit_field(form.disable, class_="btn btn-secondary ml-2") }}

{% endblock %}