koji_hub / staging: Enable koji-sidetag-plugin in staging koji.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2019-07-05 19:07:33 +00:00
parent 52966abd3c
commit 7b1f7310ab
2 changed files with 13 additions and 0 deletions

View file

@ -108,6 +108,7 @@
- packages
- koji_hub
- fedora-messaging
- python2-koji-sidetag-plugin-hub
- name: create the config folder for fedora-messaging
when: env == 'staging'

View file

@ -75,7 +75,11 @@ DisableNotifications = True
#Plugins = koji-disable-builds-plugin
#Plugins = darkserver-plugin
{% if env == "staging" %}
Plugins = fedmsg-koji-plugin runroot_hub hub_containerbuild tag2distrepo sidetag
{% else %}
Plugins = fedmsg-koji-plugin runroot_hub hub_containerbuild tag2distrepo
{% endif %}
[policy]
@ -158,3 +162,11 @@ package_list =
tag coreos-pool coreos-release && has_perm coreos-continuous && match action add unblock block :: allow
# Catch-all rule.
all :: deny
{% if env == "staging" %}
sidetag =
tag f31-build :: allow
tag f30-build :: allow
tag f29-build :: allow
all :: deny
{% endif %}