Skip to content

Commit

Permalink
add dependabot yaml for parsing project deps (#74)
Browse files Browse the repository at this point in the history
* add dependabot yaml for parsing project deps

* Update dependabot.yml

---------

Co-authored-by: Brian Thorne <[email protected]>
  • Loading branch information
TheDen and hardbyte authored Feb 20, 2024
1 parent 19f3efd commit f2a5c82
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
version: 2
updates:
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
time: "09:00"
timezone: "Pacific/Auckland"
open-pull-requests-limit: 1
ignore:
- dependency-name: "python"
update-types:
["version-update:semver-major", "version-update:semver-minor"]
- dependency-name: "*"
update-types: ["version-update:semver-major"]
labels:
- "docker"
- "dependencies"

- package-ecosystem: "github-actions"
directory: "/"
open-pull-requests-limit: 1
schedule:
interval: "daily"
time: "09:00"
timezone: "Pacific/Auckland"
labels:
- "ci/cd"
- "dependencies"

- package-ecosystem: "npm"
directory: "/docs"
open-pull-requests-limit: 1
schedule:
interval: "daily"
time: "09:00"
timezone: "Pacific/Auckland"
groups:
npm-packages:
patterns:
- "*"
labels:
- "docs"
- "dependencies"

- package-ecosystem: "pip"
directory: "/"
open-pull-requests-limit: 1
schedule:
interval: "daily"
time: "09:00"
timezone: "Pacific/Auckland"
groups:
python-packages:
patterns:
- "*"
labels:
- "cli"
- "dependencies"

- package-ecosystem: "pip"
directory: "/operator"
open-pull-requests-limit: 1
schedule:
interval: "daily"
time: "09:00"
timezone: "Pacific/Auckland"
groups:
python-packages:
patterns:
- "*"
labels:
- "operator"
- "dependencies"

0 comments on commit f2a5c82

Please sign in to comment.