forked from github.com/pypiserver
85e065e1ad
* feat: dependabot - add dependabot yml file to look in the docker & requirements folders - split the requirements out of the test.pip into a test-requirements.pip file so dependabot recognizes it It was found that in order to have the python dependabot recognize the requirements a naming convention had to be followed * feat: dependabot alter to monthly
14 lines
321 B
YAML
14 lines
321 B
YAML
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
|
|
version: 2
|
|
updates:
|
|
- package-ecosystem: "pip"
|
|
directory: "/docker"
|
|
schedule:
|
|
interval: "monthly"
|
|
- package-ecosystem: "pip"
|
|
directory: "/requirements"
|
|
schedule:
|
|
interval: "monthly"
|
|
|