From a3872137f9dbb8633323d525e444f3113a09154d Mon Sep 17 00:00:00 2001 From: Yurii Shynbuiev Date: Fri, 1 Nov 2024 17:38:52 +0700 Subject: [PATCH] ci: add embedded mongo to the exclusion list of the scala-steward config (#362) * ci: add DCO to the scala-steward configuration Signed-off-by: Yurii Shynbuiev * ci: add embed.mongo to ignore list in the .scala-steward.conf Signed-off-by: Yurii Shynbuiev --------- Signed-off-by: Yurii Shynbuiev --- .scala-steward.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.scala-steward.conf b/.scala-steward.conf index 22688a91..f0c86cfe 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -12,6 +12,11 @@ dependencyOverrides = [ } ] +updates.ignore = [ + # this dependency should be updated manually because scala-steward doesn't have permissions to update the ci.yml file + { groupId = "de.flapdoodle.embed", artifactId = "de.flapdoodle.embed.mongo" } +] + # If set, Scala Steward will use this message template for the commit messages and PR titles. # Supported variables: ${artifactName}, ${currentVersion}, ${nextVersion} and ${default} # Default: "${default}" which is equivalent to "Update ${artifactName} to ${nextVersion}"