Skip to content

Commit

Permalink
chore: configure Dependabot file for dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
aialok committed Jun 4, 2024
1 parent 2023955 commit c906ddc
Showing 1 changed file with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions .github/dependabot.yml
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):"

0 comments on commit c906ddc

Please sign in to comment.