From 53a8dd36cc7afd621a04dc5654295784c8872674 Mon Sep 17 00:00:00 2001 From: Frank Viernau Date: Wed, 6 Dec 2023 09:14:22 +0100 Subject: [PATCH] feat(helper-cli): Add two patterns to path exclude generation Signed-off-by: Frank Viernau --- helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt b/helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt index 34e4e05340d08..a4e389911b070 100644 --- a/helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt +++ b/helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt @@ -281,7 +281,9 @@ private val PATH_EXCLUDE_REASON_FOR_FILENAME = listOf( "makefile.*" to BUILD_TOOL_OF, "mkdocs.yml" to BUILD_TOOL_OF, "package-lock.json" to BUILD_TOOL_OF, + "poetry.lock" to BUILD_TOOL_OF, "proguard-rules.pro" to BUILD_TOOL_OF, + "pyproject.toml" to BUILD_TOOL_OF, "renovate.json" to BUILD_TOOL_OF, "runsuite.c" to TEST_OF, "runtest.c" to TEST_OF,