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:
Daniel Han 2026-07-05 23:20:05 +00:00
commit b558bc7de6

View file

@ -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: