From 32fed4d3079859136434a089bd1f94b6402df970 Mon Sep 17 00:00:00 2001 From: Tamara Boehm <34028368+b1tamara@users.noreply.github.com> Date: Mon, 13 Nov 2023 10:27:22 +0100 Subject: [PATCH] ci: limit number of open PRs --- .github/dependabot.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6bd26c86..4fac48e9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,10 +3,12 @@ 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: @@ -14,10 +16,12 @@ updates: - 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: @@ -25,10 +29,12 @@ updates: - 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: