Skip to content

Commit

Permalink
ci(deps): setup dependabot updates (#413)
Browse files Browse the repository at this point in the history
* 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
MrDynamo authored May 9, 2024
1 parent 3e213b1 commit 97a5fd4
Showing 1 changed file with 46 additions and 0 deletions.
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"

0 comments on commit 97a5fd4

Please sign in to comment.