-
-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: configure Dependabot file for dependency updates
- Loading branch information
Showing
1 changed file
with
26 additions
and
7 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 |
---|---|---|
@@ -1,11 +1,30 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
# configuration file for Dependabot | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
# Configuration for Yarn package ecosystem | ||
- package-ecosystem: "yarn" | ||
|
||
# Directory containing the package manifests (e.g. yarn.lock) | ||
directory: "/" | ||
|
||
# Schedule for dependency updates | ||
schedule: | ||
interval: "weekly" | ||
|
||
# Customize commit messages for dependency updates | ||
commit-message: | ||
prefix: "chore(deps):" | ||
|
||
# Configuration for GitHub Actions dependencies | ||
- package-ecosystem: "github-actions" | ||
|
||
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) | ||
directory: "/" | ||
|
||
# Schedule for dependency updates | ||
schedule: | ||
interval: "weekly" | ||
|
||
# Customize commit messages for dependency updates | ||
commit-message: | ||
prefix: "chore(deps):" |