Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at d53cf66a7c485bc65a203dfd645442c65b48b58e 30 lines 913 B view raw
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 commit-message: 15 # Use 'chore' as the commit message prefix 16 prefix: 'chore' 17 include: 'scope' 18 # Labels to add to Dependabot PRs 19 labels: 20 - 'dependencies' 21 - 'automated' 22 ignore: 23 # Ignore major version updates (breaking changes) 24 - dependency-name: '*' 25 update-types: ['version-update:semver-major'] 26 allow: 27 # Allow updates for development dependencies 28 - dependency-type: 'development' 29 # Allow updates for direct dependencies 30 - dependency-type: 'direct'