mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
### Description supplement of #13248 Add PR trigger https://learn.microsoft.com/en-us/azure/devops/pipelines/repos/github?view=azure-devops&tabs=yaml#pr-triggers fix: master -> main Testted with #13289 #13292 NB: the real pipeline is always triggered if the workflow yaml changed even it's added in the path filter. ### 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. --> Make sure the real pipeline not run in the backend.
20 lines
412 B
Django/Jinja
20 lines
412 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: ubuntu-latest
|
|
steps:
|
|
- run: 'echo "No build required, only documentation changed"'
|
|
{% endfor %}
|