From 2a469fbc0298f1c188ab13cf83980e988f21aab1 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sun, 28 Apr 2024 17:55:08 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Use=20correct=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- check_resource_updates.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check_resource_updates.py b/check_resource_updates.py index 49f7fd2..0dabfcb 100644 --- a/check_resource_updates.py +++ b/check_resource_updates.py @@ -27,12 +27,12 @@ def check_if_build_is_required() -> bool: old_integration_version, old_integration_source, app_obj.resource["integrations"]["version"], - app_obj.patches_dl, + app_obj.integrations_dl, ) or GitHubManager(env).should_trigger_build( old_patches_version, old_patches_source, app_obj.resource["patches"]["version"], - app_obj.integrations_dl, + app_obj.patches_dl, ): caused_by = { "app_name": app_name,