Skip to content

Commit

Permalink
feat: add Dependabot configuration for automated version updates (#1)
Browse files Browse the repository at this point in the history
* feat: add Dependabot configuration for automated version updates

* fix: update fetch-depth in GitHub Actions workflow for complete history
  • Loading branch information
devak997 authored Nov 9, 2024
1 parent 6d0e586 commit cd9757f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directories:
- /
- packages/client
- packages/server
schedule:
interval: "weekly"
2 changes: 2 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: pnpm/action-setup@v4

Expand Down

0 comments on commit cd9757f

Please sign in to comment.