cc71d66465
Change-Id: Id25cd5537f029592855316abbeff99afd81918cf
15 lines
364 B
YAML
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
|