From b599e93164e5b7e8f35b1535e54c12dc17d30044 Mon Sep 17 00:00:00 2001 From: Tamara Boehm <34028368+b1tamara@users.noreply.github.com> Date: Fri, 12 Jan 2024 10:02:33 +0100 Subject: [PATCH] ci: limit number of open PRs Limit number of open PRs to prevent parallel concourse runs --- .github/dependabot.yml | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ef4e7c91..84f5c703 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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