docs: clarify messaging vs full tool profiles (#39954)

* docs: clarify messaging vs full tool profiles

* docs: normalize tools.profile references

* docs: clarify messaging and full tool profiles

---------

Co-authored-by: vincentkoc <25068+vincentkoc@users.noreply.github.com>
This commit is contained in:
Olamiposi
2026-04-27 23:44:17 +01:00
committed by GitHub
parent cc80a40d86
commit c51e315f3a
4 changed files with 34 additions and 4 deletions

View File

@@ -94,9 +94,7 @@ export function detectChangedLanes(changedPaths, options = {}) {
!packageJsonIsLiveDockerTooling &&
!packageJsonIsTooling &&
paths.some((changedPath) => RELEASE_METADATA_PATHS.has(changedPath)) &&
paths.every(
(changedPath) => RELEASE_METADATA_PATHS.has(changedPath) || DOCS_PATH_RE.test(changedPath),
)
paths.every((changedPath) => RELEASE_METADATA_PATHS.has(changedPath))
) {
lanes.releaseMetadata = true;
lanes.docs = paths.some((changedPath) => DOCS_PATH_RE.test(changedPath));