From ebcc79658587c156308c46a69f2d6d05c2eb83c3 Mon Sep 17 00:00:00 2001 From: Michael Clayson Date: Tue, 17 Mar 2026 15:36:18 +0000 Subject: [PATCH 1/3] testing force rebuild --- .../src/Functions/Shared/Model/BasicParticipantCsvRecord.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/CohortManager/src/Functions/Shared/Model/BasicParticipantCsvRecord.cs b/application/CohortManager/src/Functions/Shared/Model/BasicParticipantCsvRecord.cs index fbce290a2c..447e63be5c 100644 --- a/application/CohortManager/src/Functions/Shared/Model/BasicParticipantCsvRecord.cs +++ b/application/CohortManager/src/Functions/Shared/Model/BasicParticipantCsvRecord.cs @@ -8,6 +8,8 @@ public class BasicParticipantCsvRecord /// /// A string representing either the CaaS file name or the ServiceNow Case Number from where this participant originated. /// + /// + /// Test ForceRebuild public string FileName { get; set; } public BasicParticipantData BasicParticipantData { get; set; } public Participant Participant { get; set; } From f326af2cae8793f80995aa158fdadd17755d6a26 Mon Sep 17 00:00:00 2001 From: Michael Clayson Date: Tue, 17 Mar 2026 15:41:33 +0000 Subject: [PATCH 2/3] fix: base image rebuild script --- scripts/deployment/check-base-image-changes.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/scripts/deployment/check-base-image-changes.sh b/scripts/deployment/check-base-image-changes.sh index 6a3a39a4a4..a800b42171 100644 --- a/scripts/deployment/check-base-image-changes.sh +++ b/scripts/deployment/check-base-image-changes.sh @@ -31,10 +31,21 @@ else # Remove spaces base_path="$(printf '%s' "$base_path" | xargs)" + base_path="${base_path#./}" for changed_path in "${source_changes[@]}"; do - if [[ "${changed_path}" == "${base_path}" ]]; then + changed_path="${changed_path#./}" + + if [[ "${base_path}" == */ ]]; then + matches=false + [[ "${changed_path}" == "${base_path}"* ]] && matches=true + else + matches=false + [[ "${changed_path}" == "${base_path}" || "${changed_path}" == "${base_path}/"* ]] && matches=true + fi + + if [[ "${matches}" == true ]]; then echo "Base image change detected in: ${changed_path}" build_base_image=true break 2 From be440ca271e7f783e3d4c840874aceb7ad7c5a4e Mon Sep 17 00:00:00 2001 From: Michael Clayson Date: Tue, 17 Mar 2026 16:08:43 +0000 Subject: [PATCH 3/3] remove comment to test force rebuild --- .../src/Functions/Shared/Model/BasicParticipantCsvRecord.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/application/CohortManager/src/Functions/Shared/Model/BasicParticipantCsvRecord.cs b/application/CohortManager/src/Functions/Shared/Model/BasicParticipantCsvRecord.cs index 447e63be5c..fbce290a2c 100644 --- a/application/CohortManager/src/Functions/Shared/Model/BasicParticipantCsvRecord.cs +++ b/application/CohortManager/src/Functions/Shared/Model/BasicParticipantCsvRecord.cs @@ -8,8 +8,6 @@ public class BasicParticipantCsvRecord /// /// A string representing either the CaaS file name or the ServiceNow Case Number from where this participant originated. /// - /// - /// Test ForceRebuild public string FileName { get; set; } public BasicParticipantData BasicParticipantData { get; set; } public Participant Participant { get; set; }