mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-21 02:40:08 +00:00
26 lines
714 B
YAML
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'
|