Files
discordeno/.github/dependabot.yml
T

22 lines
599 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: '/website'
schedule:
interval: 'weekly'