-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdependabot.yaml
32 lines (30 loc) · 1.02 KB
/
dependabot.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# dependabot.yml reference: https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates
#
# Notes:
# - Status and logs from dependabot are provided at
# https://github.com/yuvipanda/jupyterhub-ssh/network/updates.
# - YAML anchors are not supported here or in GitHub Workflows.
# - We explicitly set the "maintenance" label to help our changelog generator
# tool github-activity to categorize PRs.
#
version: 2
updates:
# Maintain Python dependencies for the jupyterhub-sftp image
- package-ecosystem: pip
directory: "/jupyterhub-sftp"
schedule:
interval: daily
time: "05:00"
timezone: "Etc/UTC"
versioning-strategy: lockfile-only
labels:
- maintenance
- dependencies
# Maintain dependencies in our GitHub Workflows
- package-ecosystem: github-actions
directory: / # This should be / rather than .github/workflows
schedule:
interval: weekly
day: monday
time: 05:00
timezone: Etc/UTC