36
loading...
This website collects cookies to deliver better user experience
In the root folder of your repository, if you don't already have it, create a .github
folder.
Inside the .github
folder, create a file called dependabot.yml
, for this example I am using npm
as my package ecosystem. Inside the file copy the following content.
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
package-ecosystem
), where the dependency manifest is located (directory
), in our case the package.json
file, and how often you want Dependabot to look for updates (schedule
).