Skip to content
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
87 changes: 81 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,86 @@
version: 2

updates:
- package-ecosystem: github-actions
directory: /
# npm - Minor and Patch updates
- package-ecosystem: "npm"
directory: "/"
target-branch: QA-Test
schedule:
interval: "weekly"
# Wait at least 10 days after a new version is released before opening a PR
cooldown:
default-days: 10
labels:
- "dependencies"
- "npm"
# one PR per week that groups BOTH minor + patch updates
groups:
npm-updates:
applies-to: version-updates
patterns:
- "*"
update-types:
- minor
- patch

# npm - Security updates
- package-ecosystem: "npm"
directory: "/"
target-branch: master
schedule:
interval: "daily"
# Wait at least 1 day after a security update is released before opening a PR
cooldown:
default-days: 1
labels:
- "dependencies"
- "npm"
- "security"
# one PR that groups security updates
groups:
security:
applies-to: security-updates
patterns:
- "*"

# GitHub Actions - Minor and Patch updates
- package-ecosystem: "github-actions"
directory: "/"
target-branch: QA-Test
schedule:
interval: daily
interval: "weekly"
# Wait at least 10 days after a new version is released before opening a PR
cooldown:
default-days: 10
labels:
- "dependencies"
- "github_actions"
# one PR per week that groups BOTH minor + patch updates
groups:
actions-updates:
applies-to: version-updates
patterns:
- "*"
update-types:
- minor
- patch

- package-ecosystem: npm
directory: /
# GitHub Actions - Security updates
- package-ecosystem: "github-actions"
directory: "/"
target-branch: master
schedule:
interval: daily
interval: "daily"
# Wait at least 1 day after a security update is released before opening a PR
cooldown:
default-days: 1
labels:
- "dependencies"
- "github_actions"
- "security"
# one PR that groups security updates
groups:
security:
applies-to: security-updates
patterns:
- "*"
Loading