Skip to content

Commit

Permalink
Merge pull request #779 from bryantbiggs/chore/dependabot
Browse files Browse the repository at this point in the history
chore: Add dependabot configuration to automatically check for package updates weekly
  • Loading branch information
k8s-ci-robot authored Dec 13, 2024
2 parents 7739f6c + d97daa8 commit b41dd60
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Copyright 2024 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the 'License');
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an 'AS IS' BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

version: 2
enable-beta-ecosystems: true
updates:
- package-ecosystem: gomod
directories:
- '**/*'
allow:
- dependency-type: 'all'
schedule:
interval: weekly
day: 'monday'
time: '06:00'
timezone: 'US/Pacific'
groups:
aws-dependencies:
patterns:
- 'github.com/aws/*'
k8s-dependencies:
patterns:
- 'k8s.io*'
- 'sigs.k8s.io*'
misc-dependencies:
patterns:
- '*'
exclude-patterns:
- 'github.com/aws/*'
- 'k8s.io*'
- 'sigs.k8s.io*'
labels:
- 'area/dependency'
- 'ok-to-test'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: weekly
day: 'monday'
time: '06:00'
timezone: 'US/Pacific'
groups:
actions:
patterns:
- '*'
labels:
- 'area/dependency'
- 'ok-to-test'

0 comments on commit b41dd60

Please sign in to comment.