UNPKG

500 BYAMLView Raw
1# Create Pull-Requests for NPM updates automatically
2# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/enabling-and-disabling-version-updates#enabling-dependabot-version-updates
3
4version: 2
5updates:
6 # Maintain dependencies for GitHub Actions
7 - package-ecosystem: 'github-actions'
8 directory: '/'
9 schedule:
10 interval: 'monthly'
11
12 # Maintain dependencies for npm
13 - package-ecosystem: 'npm'
14 directory: '/'
15 schedule:
16 interval: 'monthly'