releng: create a playbook to manage koji tags in stg

Signed-off-by: Clement Verna <cverna@tutanota.com>
This commit is contained in:
Clement Verna 2020-04-09 11:28:11 +02:00 committed by Pierre-Yves Chibon
parent 51a8630dec
commit d3d384fd33

View file

@ -0,0 +1,21 @@
---
- name: Create the release tags in koji.
hosts: composer.stg.phx2.fedoraproject.org
gather_facts: no
tasks:
- name: create the main koji tag
koji_tag:
koji: stg
name: f33
state: present
perm: admin
- name: create the updates tag
koji_tag:
koji: stg
name: f33-updates
state: present
perm: admin
inheritance:
- parent: f33
priority: 0