mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-12 17:57:38 +00:00
### 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. -->
20 lines
404 B
Django/Jinja
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 %}
|