From 8a4094eeb601343b2575a5b55e75c2629dac4673 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sat, 18 Nov 2023 09:15:39 -0500 Subject: [PATCH] fix(renovate): set packageRules for LizardByte actions --- renovate-config.json5 | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/renovate-config.json5 b/renovate-config.json5 index 1d70ea15..6f0e8fd1 100644 --- a/renovate-config.json5 +++ b/renovate-config.json5 @@ -31,5 +31,14 @@ // beta features "git-submodules": { "enabled": true - } + }, + // package rules + "packageRules": [ + { + // match LizardByte's GitHub actions + "matchManagers": ["github-actions"], + "matchPackagePatterns": ["^LizardByte/"], + "ignoreUnstable": false, // renovate using semver to determine stability, which does not align with our tags + } + ] }