Skip to content

Commit d2dc06f

Browse files
committed
Configure Buddy Bot to respect 'latest' versions and ignore test fixtures
1 parent 32c5d46 commit d2dc06f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

buddy-bot.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,16 @@ const config: BuddyBotConfig = {
2727
ignore: [
2828
// Add packages to ignore here
2929
// Example: '@types/node', 'eslint'
30+
'python.org', // Keep as 'latest' instead of pinning to specific versions
3031
],
3132
ignorePaths: [
3233
// Add file/directory paths to ignore using glob patterns
3334
// Example: 'packages/test-*/**', '**/*test-envs/**', 'apps/legacy/**'
35+
'packages/launchpad/test/fixtures/pkgx.yml', // Ignore test fixtures that use 'latest'
3436
],
37+
// Configuration for respecting 'latest' versions
38+
respectLatest: true, // Don't create PRs for packages set to 'latest'
39+
ignoreLatestUpdates: true, // Ignore updates for packages that are intentionally set to 'latest'
3540
},
3641
verbose: false,
3742
}

0 commit comments

Comments
 (0)