forked from
quillmatiq.com/augment
Fork of Chiri for Astro for my blog
1version: 2
2updates:
3 # Enable npm (pnpm) dependency updates
4 - package-ecosystem: 'npm'
5 directory: '/'
6 schedule:
7 # Check for updates every Monday at 09:00 (Asia/Shanghai)
8 interval: 'weekly'
9 day: 'monday'
10 time: '09:00'
11 timezone: 'Asia/Shanghai'
12 # Limit the number of open PRs created by Dependabot
13 open-pull-requests-limit: 10
14 # Allow automatic merging of non-major version updates
15 allow:
16 - dependency-type: 'all'
17 assignees:
18 - 'the3ash'
19 commit-message:
20 # Use 'deps' for production dependencies, 'dev' for development dependencies
21 prefix: 'deps'
22 prefix-development: 'dev'
23 include: 'scope'
24 # Labels to add to Dependabot PRs
25 labels:
26 - 'dependencies'
27 - 'automated'
28 ignore:
29 # Ignore major version updates (breaking changes)
30 - dependency-name: '*'
31 update-types: ['version-update:semver-major']
32 versioning-strategy: auto
33
34 # Enable GitHub Actions updates
35 - package-ecosystem: 'github-actions'
36 directory: '/'
37 schedule:
38 # Check for updates every Monday at 09:00 (Asia/Shanghai)
39 interval: 'weekly'
40 day: 'monday'
41 time: '09:00'
42 timezone: 'Asia/Shanghai'
43 open-pull-requests-limit: 10
44 assignees:
45 - 'the3ash'
46 commit-message:
47 prefix: 'github-actions'
48 include: 'scope'
49 labels:
50 - 'dependencies'
51 - 'automated'
52 - 'github-actions'