From baf1464e64c8478b478622c6ca551623445029a7 Mon Sep 17 00:00:00 2001 From: Yurii Shynbuiev Date: Thu, 24 Oct 2024 23:19:00 +0700 Subject: [PATCH 1/2] ci: add DCO to the scala-steward configuration 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 33a99b7a..22688a91 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -11,3 +11,8 @@ dependencyOverrides = [ # pullRequests = { frequency = "@monthly" }, } ] + +# 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}" +commits.message = "${default}\n\nSigned-off-by: Hyperledger Bot " From 65f9361351206ecace0d1d2a91814cfedde63344 Mon Sep 17 00:00:00 2001 From: Yurii Shynbuiev Date: Fri, 25 Oct 2024 19:48:05 +0700 Subject: [PATCH 2/2] ci: add embed.mongo to ignore list in the .scala-steward.conf 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}"