Merge "zuul-migrate: run / post-run playbooks need .yaml extensions"

This commit is contained in:
Zuul 2018-06-19 09:25:08 +00:00 committed by Gerrit Code Review
commit de3187a356
1 changed files with 2 additions and 2 deletions

View File

@ -928,9 +928,9 @@ class Job:
output['parent'] = 'legacy-publish-openstack-artifacts'
elif has_draft:
output['success-url'] = 'html/'
output['run'] = os.path.join(self.job_path, 'run')
output['run'] = os.path.join(self.job_path, 'run.yaml')
if has_post:
output['post-run'] = os.path.join(self.job_path, 'post')
output['post-run'] = os.path.join(self.job_path, 'post.yaml')
if self.vars:
output['vars'] = self.vars.copy()