You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR was automatically closed because it contains updates for packages with dynamic version indicators (like \`*\`, \`latest\`, etc.) that are now filtered out by the \`respectLatest\` configuration.
1015
+
if(respectLatest&&hasDynamicVersions){
1016
+
comment+=`
1017
+
1018
+
**Reason:** Contains updates for packages with dynamic version indicators (like \`*\`, \`latest\`, etc.) that are now filtered out by the \`respectLatest\` configuration.
942
1019
943
1020
**Affected packages:** ${packageNames.join(', ')}
944
1021
@@ -949,6 +1026,31 @@ If you need to update these packages to specific versions, you can:
949
1026
2. Or manually update the dependency files to use specific versions instead of dynamic indicators
950
1027
951
1028
This helps maintain the intended behavior of dynamic version indicators while preventing unwanted updates.`
1029
+
}
1030
+
elseif(ignoredFiles.length>0){
1031
+
comment+=`
1032
+
1033
+
**Reason:** Contains updates for files that are now excluded by the \`ignorePaths\` configuration.
1034
+
1035
+
**Affected files:** ${ignoredFiles.join(', ')}
1036
+
1037
+
The \`ignorePaths\` setting now excludes these file paths from dependency updates. This PR was created before these paths were ignored.
1038
+
1039
+
If you need to include these files again, you can:
1040
+
1. Remove or modify the relevant patterns in \`ignorePaths\` in your \`buddy-bot.config.ts\`
1041
+
2. Or manually manage dependencies in these paths
1042
+
1043
+
Current ignore patterns: ${ignorePaths.join(', ')}`
1044
+
}
1045
+
else{
1046
+
comment+=`
1047
+
1048
+
**Reason:** Configuration changes have made this PR obsolete.
1049
+
1050
+
**Affected packages:** ${packageNames.join(', ')}
1051
+
1052
+
Please check your \`buddy-bot.config.ts\` configuration for recent changes to \`respectLatest\` or \`ignorePaths\` settings.`
0 commit comments