mirror of
https://github.com/moby/moby.git
synced 2026-06-30 19:58:03 +00:00
The platform/windows label was incorrectly being applied when any file in a PR was Windows-specific, even if the PR also contained non-Windows changes. This caused a lot of non-Windows-specific changes to be mislabeled as Windows-only. Changed from `any-glob-to-any-file` to `any-glob-to-all-files` so that the windows label is only applied when ALL changed files match the windows-specific patterns (like `*_windows.go` or `Dockerfile.windows`). This ensures that mixed PRs containing both Windows and cross-platform changes are not incorrectly tagged as Windows-only. Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>