ci(studio-backend): trigger on docker/** so the JupyterLab feature validation guards docker-only changes
The 'Docker JupyterLab/notebook feature validation' step runs tests/validate_studio_features.py, which checks docker/jupyter (the labextension, overrides.json, login branding) and the docker notebook helpers. The pull_request paths filter listed studio/unsloth/tests but not docker/**, so a PR that only touches docker/ would skip that step and a regression in those files could pass CI. Add docker/** so the validation runs whenever the files it checks change.
This commit is contained in:
parent
38df3879ed
commit
b558bc7de6
1 changed files with 5 additions and 0 deletions
5
.github/workflows/studio-backend-ci.yml
vendored
5
.github/workflows/studio-backend-ci.yml
vendored
|
|
@ -30,6 +30,11 @@ on:
|
|||
- 'unsloth/**'
|
||||
- 'unsloth_cli/**'
|
||||
- 'tests/**'
|
||||
# The "Docker JupyterLab/notebook feature validation" step below runs
|
||||
# tests/validate_studio_features.py, which checks docker/jupyter (the
|
||||
# labextension, overrides.json, login branding) and the docker notebook
|
||||
# helpers. Without docker/** here a docker-only change skips that guard.
|
||||
- 'docker/**'
|
||||
- 'pyproject.toml'
|
||||
- '.github/workflows/studio-backend-ci.yml'
|
||||
push:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue