Skip to content

Commit

Permalink
Fix dependabot.yml handling
Browse files Browse the repository at this point in the history
Need to ensure that this repository contains the superset of all
required values for all other repositories in the Homebrew GitHub
organisation so that filtering works as expected.
  • Loading branch information
MikeMcQuaid committed Jun 11, 2024
1 parent 3b1cb8b commit 8d52e9c
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 15 deletions.
1 change: 1 addition & 0 deletions .github/actions/sync/shared-config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ def git(*args)
ruby-macho
].freeze
custom_dependabot_repos = %w[
.github
brew
ci-orchestrator
].freeze
Expand Down
67 changes: 52 additions & 15 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,55 @@
# This file is synced from the `.github` repository, do not modify it directly.
---
# This file is used as a base for all other repositories in the Homebrew GitHub
# organisation so intentionally contains package-ecosystems that do not apply to
# this repository.
version: 2

updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
allow:
- dependency-type: all
ignore:
- dependency-name: actions/stale
- dependency-name: dessant/lock-threads
groups:
artifacts:
patterns:
- actions/*-artifact
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
allow:
- dependency-type: all
# The actions in triage-issues.yml are updated in the Homebrew/.github repo
ignore:
- dependency-name: actions/stale
- dependency-name: dessant/lock-threads
groups:
artifacts:
patterns:
- actions/*-artifact

- package-ecosystem: bundler
directory: /
schedule:
interval: daily
allow:
- dependency-type: all

- package-ecosystem: npm
directory: /
schedule:
interval: daily
allow:
- dependency-type: all

- package-ecosystem: docker
directory: /
schedule:
interval: daily
allow:
- dependency-type: all

- package-ecosystem: devcontainers
directory: /
schedule:
interval: daily
allow:
- dependency-type: all

- package-ecosystem: pip
directory: /
schedule:
interval: daily
allow:
- dependency-type: all

0 comments on commit 8d52e9c

Please sign in to comment.