-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(deps): setup dependabot updates (#413)
* chore(deps): 🧼 setup dependabot * chore(dependabot): 🧺 add github actions * fix: 🐛 yaml formatting * fix: 🚑 target pr against develop branch * chore: 🧽 remove reviewers as another action will request review on all pr
- Loading branch information
Showing
1 changed file
with
46 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,46 @@ | ||
# Basic `dependabot.yml` file with | ||
# minimum configuration for two package managers | ||
|
||
version: 2 | ||
updates: | ||
# Enable version updates for npm project | ||
- package-ecosystem: "npm" | ||
# Look for `package.json` and `lock` files in the `root` directory | ||
directory: "/" | ||
# Check the npm registry for updates every day (weekdays) | ||
schedule: | ||
interval: "daily" | ||
# NOTE: Removed reviewers as the pr-review-request workflow will accomplish the same thing on all PR types. | ||
# reviewers: | ||
# - JamsRepos | ||
# - PhantomMantis | ||
# - MrDynamo | ||
target-branch: "develop" | ||
|
||
# Enable version updates for poetry backend | ||
- package-ecosystem: "pip" | ||
# Look for `pyproject.toml` and `lock` files in the `backend` directory | ||
directory: "/apps/wizarr_backend/" | ||
# Check the pip registry for updates every day (weekdays) | ||
schedule: | ||
interval: "daily" | ||
# NOTE: Removed reviewers as the pr-review-request workflow will accomplish the same thing on all PR types. | ||
# reviewers: | ||
# - JamsRepos | ||
# - PhantomMantis | ||
# - MrDynamo | ||
target-branch: "develop" | ||
|
||
# Enable version updates for github actions | ||
- package-ecosystem: "github-actions" | ||
# Defaults to .github/workflows directory | ||
directory: "/" | ||
# Check the actions registry for updates every day (weekdays) | ||
schedule: | ||
interval: "daily" | ||
# NOTE: Removed reviewers as the pr-review-request workflow will accomplish the same thing on all PR types. | ||
# reviewers: | ||
# - JamsRepos | ||
# - PhantomMantis | ||
# - MrDynamo | ||
target-branch: "develop" |