From 393495bac7c1ee9c285486d109194aa4b71aa08f Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Tue, 1 Oct 2024 10:33:39 +1300 Subject: [PATCH] FIX Don't try to tag patches on recipes --- scripts/cms-any/tag-patch-release.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cms-any/tag-patch-release.php b/scripts/cms-any/tag-patch-release.php index 4cc5af0..6a72c1c 100644 --- a/scripts/cms-any/tag-patch-release.php +++ b/scripts/cms-any/tag-patch-release.php @@ -65,7 +65,7 @@ 'silverstripe-tx-translator', 'supported-modules', ]; -$shouldHaveAction = $shouldHaveAction && !is_misc() && !module_is_one_of($notAllowedRepos); +$shouldHaveAction = $shouldHaveAction && !is_misc() && !module_is_recipe() && !module_is_one_of($notAllowedRepos); if ($shouldHaveAction) { write_file_even_if_exists($workflowPath, $content);