CI: Add path filters to python-deps workflow
No need to run this workflow on all PRs, only those that change the Python dependency installation mechanism.
This commit is contained in:
parent
bbc2e7010f
commit
0d16d70d87
1 changed files with 7 additions and 0 deletions
7
.github/workflows/python-deps.yml
vendored
7
.github/workflows/python-deps.yml
vendored
|
|
@ -7,6 +7,13 @@ on:
|
||||||
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
||||||
# by other workflows.
|
# by other workflows.
|
||||||
types: [opened, synchronize, reopened, ready_for_review]
|
types: [opened, synchronize, reopened, ready_for_review]
|
||||||
|
paths:
|
||||||
|
# Changes to this workflow.
|
||||||
|
- '.github/workflows/python-deps.yml'
|
||||||
|
# Changes to the Python package installation scripts and their tests.
|
||||||
|
- 'python-setup/**'
|
||||||
|
# Changes to the default CodeQL bundle version.
|
||||||
|
- '**/defaults.json'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-setup-python-scripts:
|
test-setup-python-scripts:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue