Skip to content

Commit

Permalink
fix: Reduce Dependabot update frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeboer committed Jul 17, 2024
1 parent 23e1c36 commit d111283
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
groups:
comunica:
patterns:
- "@comunica/*"
opentelemetry:
patterns:
- "@opentelemetry/*"
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
Expand Down

0 comments on commit d111283

Please sign in to comment.