onnxruntime/.github/workflows/skip-doc-change.yml.j2
Yi Zhang 8a3407d54f
update file name in the comment (#13275)
### Description
Correct the file name in the comments of the generated yaml.

### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
2022-10-12 08:35:42 +08:00

20 lines
404 B
Django/Jinja

# Don't edit this file manully.
# Run {{ python_file_name }} to generate it.
name: {{ ci_workflow_name }}
on:
push:
paths:
- docs/**
- README.md
- CONTRIBUTING.md
- BUILD.md
jobs:
{%- for name in job_names %}
job{{ loop.index }}:
name: {{ name }}
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required, only documentation changed"'
{% endfor %}