33580f22b0
This tool will ensure that your markdown files follow some best practices. Change-Id: I7bcc70443dbe5fa31e3cc1139d608834c00851b9
13 lines
336 B
YAML
13 lines
336 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
|