zuul-jobs/roles/fetch-markdownlint/tasks/main.yaml
Albin Vass cc71d66465 fetch-markdownlint: do not synchronize owner
Change-Id: Id25cd5537f029592855316abbeff99afd81918cf
2020-05-18 17:04:10 +02:00

15 lines
364 B
YAML

- name: Is there a markdownlint.txt
register: stat_mdl_txt
stat:
path: "{{ zuul_work_dir }}/markdownlint.txt"
- name: Store on executor
when: stat_mdl_txt.stat.exists
synchronize:
mode: pull
src: "{{ zuul_work_dir }}/markdownlint.txt"
dest: "{{ zuul.executor.log_root }}/markdownlint.txt"
verify_host: true
owner: no
group: no