Merge "role-addition: automatically add the new molecule jobs into periodic"

This commit is contained in:
Zuul 2020-05-07 21:32:14 +00:00 committed by Gerrit Code Review
commit 9f27089134
1 changed files with 5 additions and 0 deletions

View File

@ -66,6 +66,11 @@
{% set gate_jobs = (item['project-template']['gate']['jobs'] | sort) %}
{% set _ = item['project-template']['gate'].update({'jobs': gate_jobs}) %}
{% endif %}
{% if not (new_job_name in item['project-template']['periodic-weekly']['jobs']) %}
{% set _ = item['project-template']['periodic-weekly']['jobs'].append(new_job_name) %}
{% set periodic_jobs = (item['project-template']['periodic-weekly']['jobs'] | sort) %}
{% set _ = item['project-template']['periodic-weekly'].update({'jobs': periodic_jobs}) %}
{% endif %}
{% endif %}
{% else %}
{% if item['job']['name'] == new_job_name %}