-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuddy-bot.config.ts
More file actions
39 lines (37 loc) · 860 Bytes
/
buddy-bot.config.ts
File metadata and controls
39 lines (37 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import type { BuddyBotConfig } from 'buddy-bot'
const config: BuddyBotConfig = {
repository: {
owner: 'stacksjs',
name: 'ts-countries',
provider: 'github',
// Uses GITHUB_TOKEN by default
},
dashboard: {
enabled: true,
title: 'Dependency Dashboard',
// issueNumber: undefined, // Auto-generated
},
workflows: {
enabled: true,
outputDir: '.github/workflows',
templates: {
daily: true,
weekly: true,
monthly: true,
},
custom: [],
},
packages: {
strategy: 'all',
ignore: [
// Add packages to ignore here
// Example: '@types/node', 'eslint'
],
ignorePaths: [
// Add file/directory paths to ignore using glob patterns
// Example: 'packages/test-*/**', '**/*test-envs/**', 'apps/legacy/**'
],
},
verbose: false,
}
export default config