From 51674edf8406be5040096bcc35dedaf22771ea6d Mon Sep 17 00:00:00 2001 From: Liam DeBeasi <2721089+liamdebeasi@users.noreply.github.com> Date: Mon, 26 Feb 2024 18:58:15 -0500 Subject: [PATCH] chore: update playwright and docker image together --- renovate.json5 | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/renovate.json5 b/renovate.json5 index 6d65692..8727d7a 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -4,4 +4,32 @@ dependencyDashboard: false, minimumReleaseAge: '3 days', semanticCommits: 'enabled', + packageRules: [ + { + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: ['config:base', ':semanticCommitTypeAll(chore)'], + dependencyDashboard: false, + minimumReleaseAge: '3 days', + semanticCommits: 'enabled', + packageRules: [ + { + matchDatasources: ["npm"], + matchPackagePatterns: ["@playwright/test", "@axe-core/playwright"], + groupName: "playwright", + matchFileNames: [ + "package.json" + ] + }, + { + matchDatasources: ["docker"], + matchPackageNames: ["mcr.microsoft.com/playwright"], + groupName: "playwright", + matchFileNames: [ + "Dockerfile" + ], + versioning: "semver" + }, + ] + } + ] } \ No newline at end of file