/ fastapi-template / .github / dependabot.yaml
dependabot.yaml
 1  # To get started with Dependabot version updates, you'll need to specify which
 2  # package ecosystems to update and where the package manifests are located.
 3  # Please see the documentation for all configuration options:
 4  # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
 5  
 6  version: 2
 7  
 8  updates:
 9    - package-ecosystem: "github-actions"
10      directory: "/"
11      schedule:
12        interval: "daily"
13  
14    - package-ecosystem: "docker"
15      directory: "/"
16      schedule:
17        interval: "daily"
18  
19    - package-ecosystem: "pip"
20      directory: "/"
21      schedule:
22        interval: "daily"
23  
24    - package-ecosystem: "github-actions"
25      target-branch: users
26      directory: "/"
27      schedule:
28        interval: "daily"
29  
30    - package-ecosystem: "docker"
31      target-branch: users
32      directory: "/"
33      schedule:
34        interval: "daily"
35  
36    - package-ecosystem: "pip"
37      target-branch: users
38      directory: "/"
39      schedule:
40        interval: "daily"