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
38 changes: 31 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,34 @@
version: 2

updates:
- directory: /
ignore:
- dependency-name: "github/gh-aw-actions/**" # Managed by gh aw compile. Version-locked to the gh-aw compiler; do not bump.
open-pull-requests-limit: 10
package-ecosystem: github-actions
schedule:
interval: weekly
# Configure Dependabot updates for GitHub Actions
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
open-pull-requests-limit: 20
cooldown:
default-days: 7
ignore:
- dependency-name: "github/gh-aw-actions/**" # Managed by gh aw compile. Version-locked to the gh-aw compiler; do not bump.
groups:
github-actions:
applies-to: version-updates
update-types:
- minor
- patch
Comment thread
desrosj marked this conversation as resolved.

# Configure Dependabot updates for npm
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
open-pull-requests-limit: 20
cooldown:
default-days: 7
groups:
npm-packages:
applies-to: version-updates
update-types:
- minor
- patch
Comment thread
desrosj marked this conversation as resolved.