onnxruntime/.github/workflows/skip-doc-change.yml.j2
Changming Sun a910cedf73
Move Linux Github actions to a dedicated pool (#22566)
### Description
Move Linux Github actions to a dedicated pool. Currently the
"orttraining-linux-ci-pipeline " is too slow.

### Motivation and Context
To speed up the running.
2024-10-24 07:34:05 -07:00

20 lines
464 B
Django/Jinja

# Don't edit this file manully.
# Run {{ python_file_name }} to generate it.
name: {{ ci_workflow_name }}
on:
pull_request:
paths:
- docs/**
- README.md
- CONTRIBUTING.md
- BUILD.md
jobs:
{%- for name in job_names %}
job{{ loop.index }}:
name: {{ name }}
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- run: 'echo "No build required, only documentation changed"'
{% endfor %}