copr: slightly sync copr/frontend and copr/frontend-cloud

At least for the latest config options.
This commit is contained in:
Pavel Raiskup 2019-09-02 16:42:15 +02:00 committed by Pierre-Yves Chibon
parent 72da2c16bd
commit 3d8ca34ec6
2 changed files with 19 additions and 2 deletions

View file

@ -90,8 +90,19 @@ BLACKLISTED_GROUPS = ['fedorabugs', 'packager', 'provenpackager']
DEFER_BUILD_SECONDS = 300
ENABLE_DISCUSSION = True
DISCOURSE_URL = "https://discussion.fedoraproject.org/"
# We may have a (temporary) chroot that doesn't correspond with /etc/os-release
# on a client system, e.g. "rhelbeta-8" chroots in Copr which doesn't match to
# any real system, instead it is a temporary alias for "epel-8". In such case,
# set this to {"epel-8": "rhelbeta-8"}
CHROOT_NAME_RELEASE_ALIAS = {"epel-8": "rhelbeta-8"}
{% if whitelist_emails is defined %}
WHITELIST_EMAILS = [
{% for recipient in whitelist_emails %}
"{{ recipient }}",
{% endfor %}
]
{% endif %}

View file

@ -66,10 +66,16 @@ DEFER_BUILD_SECONDS = 300
ENABLE_DISCUSSION = True
DISCOURSE_URL = "https://discussion.fedoraproject.org/"
WHITELIST_EMAILS = [
# We may have a (temporary) chroot that doesn't correspond with /etc/os-release
# on a client system, e.g. "rhelbeta-8" chroots in Copr which doesn't match to
# any real system, instead it is a temporary alias for "epel-8". In such case,
# set this to {"epel-8": "rhelbeta-8"}
CHROOT_NAME_RELEASE_ALIAS = {"epel-8": "rhelbeta-8"}
{% if whitelist_emails is defined %}
WHITELIST_EMAILS = [
{% for recipient in whitelist_emails %}
"{{ recipient }}",
{% endfor %}
{% endif %}
]
{% endif %}