Skip to content

Commit

Permalink
ci: limit number of open PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
b1tamara committed Nov 14, 2023
1 parent 6c532de commit 32fed4d
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,38 @@ updates:
- package-ecosystem: pip
directory: /ci/scripts
schedule:
interval: weekly
day: "monday"
time: "09:00"
# Check for updates every weekday
interval: "daily"
time: "06:00"
timezone: "Europe/Berlin"
# Allow only 1 open pull requests for pip to prevent parallel concourse runs
open-pull-requests-limit: 1
commit-message:
prefix: "ci"
labels:
- run-ci
- package-ecosystem: gomod
directory: /src/pcap
schedule:
interval: weekly
day: "monday"
time: "09:00"
# Check for updates every weekday
interval: "daily"
time: "12:00"
timezone: "Europe/Berlin"
# Allow only 1 open pull requests for gomod to prevent parallel concourse runs
open-pull-requests-limit: 1
commit-message:
prefix: "dep"
labels:
- run-ci
- package-ecosystem: gomod
directory: /acceptance-tests
schedule:
interval: weekly
day: "monday"
time: "09:00"
# Check for updates every weekday
interval: "daily"
time: "18:00"
timezone: "Europe/Berlin"
# Allow only 1 open pull requests for gomod to prevent parallel concourse runs
open-pull-requests-limit: 1
commit-message:
prefix: "dep"
labels:
Expand Down

0 comments on commit 32fed4d

Please sign in to comment.