-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PTFE-821 Add dependabot yml configuration (#71)
- Loading branch information
1 parent
00e056d
commit 324f32b
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
version: 2 | ||
registries: | ||
dockerhub: # Define access for a private registry | ||
type: docker-registry | ||
url: registry.hub.docker.com | ||
username: ${{ secrets.DOCKERHUB_LOGIN }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
commit-message: | ||
prefix: github-actions | ||
include: scope | ||
labels: | ||
- github-actions | ||
- dependencies | ||
|
||
- package-ecosystem: pip | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
commit-message: | ||
prefix: pip | ||
include: scope | ||
labels: | ||
- pip | ||
- dependencies | ||
|
||
- package-ecosystem: docker | ||
registries: | ||
- dockerhub | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
commit-message: | ||
prefix: docker | ||
include: scope | ||
labels: | ||
- docker | ||
- dependencies |