We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec24f45 commit 2a93a61Copy full SHA for 2a93a61
docusaurus/scripts/strapi-release-analyzer/index.js
@@ -886,7 +886,12 @@ async function main() {
886
console.log(`📚 Loaded docs index from ${llmsIndex.source} (${llmsIndex.pages.length} pages)`);
887
}
888
889
- console.log(`\n📝 Analyzing ${releaseInfo.prNumbers.length} PRs...\n`);
+ const totalPRs = releaseInfo.prNumbers.length;
890
+ if (OPTIONS.limit && OPTIONS.limit > 0) {
891
+ console.log(`\n📝 Analyzing ${totalPRs} PRs (LLM on up to ${OPTIONS.limit} of ${totalPRs})...\n`);
892
+ } else {
893
+ console.log(`\n📝 Analyzing ${totalPRs} PRs...\n`);
894
+ }
895
896
const analyses = [];
897
let skipped = 0;
0 commit comments