Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(deps): setup dependabot updates #413

Merged
merged 5 commits into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/dependabot.yml
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"