copr: slightly sync copr/frontend and copr/frontend-cloud
At least for the latest config options.
This commit is contained in:
parent
72da2c16bd
commit
3d8ca34ec6
2 changed files with 19 additions and 2 deletions
|
@ -90,8 +90,19 @@ BLACKLISTED_GROUPS = ['fedorabugs', 'packager', 'provenpackager']
|
||||||
|
|
||||||
DEFER_BUILD_SECONDS = 300
|
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
|
# 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
|
# 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,
|
# any real system, instead it is a temporary alias for "epel-8". In such case,
|
||||||
# set this to {"epel-8": "rhelbeta-8"}
|
# set this to {"epel-8": "rhelbeta-8"}
|
||||||
CHROOT_NAME_RELEASE_ALIAS = {"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 %}
|
||||||
|
|
|
@ -66,10 +66,16 @@ DEFER_BUILD_SECONDS = 300
|
||||||
ENABLE_DISCUSSION = True
|
ENABLE_DISCUSSION = True
|
||||||
DISCOURSE_URL = "https://discussion.fedoraproject.org/"
|
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 %}
|
{% if whitelist_emails is defined %}
|
||||||
|
|
||||||
|
WHITELIST_EMAILS = [
|
||||||
{% for recipient in whitelist_emails %}
|
{% for recipient in whitelist_emails %}
|
||||||
"{{ recipient }}",
|
"{{ recipient }}",
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
|
||||||
]
|
]
|
||||||
|
{% endif %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue