Files
discordeno/.github/dependabot.yml
Fleny b7c433056f Change dependabot update intervals to weekly (#4480)
Also add the website folder to be checked for npm updates
2025-10-02 21:33:22 +02:00

26 lines
714 B
YAML

# Basic `dependabot.yml` file with
# minimum configuration for two package managers
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: '/'
# Check the npm registry for updates every month
schedule:
interval: 'weekly'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
# Check for updates to GitHub Actions every month
interval: 'weekly'
- package-ecosystem: 'npm'
directory: '/docker-apps/rest-passthrough'
schedule:
interval: 'weekly'
- package-ecosystem: 'npm'
directory: '/website'
schedule:
interval: 'weekly'