monitor-gating: specify the fedpkg command to use to clean up side-tags

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2020-04-09 10:54:49 +02:00
parent 58345b0204
commit 51a8630dec

View file

@ -21,3 +21,11 @@ workflow_single_gating_args = "--conf /opt/config/monitor_gating.cfg --auto-upda
# CLI arguments to give to the script testing the multi builds gating workflow # CLI arguments to give to the script testing the multi builds gating workflow
workflow_multi_gating_args = "--conf /opt/config/monitor_gating.cfg" workflow_multi_gating_args = "--conf /opt/config/monitor_gating.cfg"
# The fedpkg command to call to clean up the dangling side-tags
{% if env == 'staging' %}
fedpkg = "fedpkg-stage"
{% else %}
fedpkg = "fedpkg"
{% endif %}