From 45669b06b8c7a0e31644ce78b74704c856955bfd Mon Sep 17 00:00:00 2001 From: Sanne Raymaekers Date: Mon, 17 Mar 2025 12:41:44 +0100 Subject: [PATCH] dependabot: ignore playwright updates Since the container embedded in our CI images is pinned, any update here would result in the container having to be pulled again in CI runs. Let's reduce the frequency that playwright gets updated, making it easier to keep the container and the dependencies here somewhat in sync. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4da903ef..7344f730 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,3 +7,9 @@ updates: time: "04:00" open-pull-requests-limit: 3 rebase-strategy: "auto" + ignore: + - dependency-name: "@playwright/test" + update-types: + - "version-update:semver-major" + - "version-update:semver-minor" + - "version-update:semver-patch"