Skip to content

Commit

Permalink
ci: limit number of open PRs
Browse files Browse the repository at this point in the history
 Limit number of open PRs to prevent parallel concourse runs
  • Loading branch information
b1tamara authored and maxmoehl committed Jan 15, 2024
1 parent 62f262d commit b599e93
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,47 @@ updates:
- package-ecosystem: gomod
directory: /acceptance-tests
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 gomod to prevent parallel concourse runs
open-pull-requests-limit: 1
labels:
- run-ci
- package-ecosystem: pip
directory: /ci/scripts
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 pip to prevent parallel concourse runs
open-pull-requests-limit: 1
labels:
- run-ci
- package-ecosystem: gomod
directory: /acceptance-tests
target-branch: "maintenance"
schedule:
interval: weekly
day: "wednesday"
time: "09:00"
# Check for updates every weekday
interval: "daily"
time: "06:00"
timezone: "Europe/Berlin"
# Allow only 1 open pull requests for gomod to prevent parallel concourse runs
open-pull-requests-limit: 1
labels:
- run-ci
- package-ecosystem: pip
directory: /ci/scripts
target-branch: "maintenance"
schedule:
interval: weekly
day: "wednesday"
time: "09:00"
# Check for updates every weekday
interval: "daily"
time: "12:00"
timezone: "Europe/Berlin"
# Allow only 1 open pull requests for pip to prevent parallel concourse runs
open-pull-requests-limit: 1
labels:
- run-ci

0 comments on commit b599e93

Please sign in to comment.