From eb1e0fec2d570ec3fd656e2e1630e468d71e32b8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 2 Jan 2026 06:58:34 +0000 Subject: [PATCH 1/2] Initial plan From f215fbf911db4f1165b4b678f68bc6d98595818b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 2 Jan 2026 07:07:25 +0000 Subject: [PATCH 2/2] Fix service test validation to check for actual success message Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com> --- .github/workflows/dotnet-core-docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet-core-docker.yml b/.github/workflows/dotnet-core-docker.yml index c06632a..23bb54e 100644 --- a/.github/workflows/dotnet-core-docker.yml +++ b/.github/workflows/dotnet-core-docker.yml @@ -1348,7 +1348,7 @@ jobs: - name: Get standard output run: | cat docker_run_log - result=`cat docker_run_log | grep "No messages for us right now!" -m 1 | wc -l` + result=`cat docker_run_log | grep "Service Start completed" -m 1 | wc -l` if [ $result -ne 1 ];then exit 1; fi items-planning-service-build: runs-on: ubuntu-latest @@ -1442,7 +1442,7 @@ jobs: - name: Get standard output run: | cat docker_run_log - result=`cat docker_run_log | grep "No messages for us right now!" -m 1 | wc -l` + result=`cat docker_run_log | grep "Service Start completed" -m 1 | wc -l` if [ $result -ne 1 ];then exit 1; fi workflow-service-build: runs-on: ubuntu-latest @@ -1536,7 +1536,7 @@ jobs: - name: Get standard output run: | cat docker_run_log - result=`cat docker_run_log | grep "No messages for us right now!" -m 1 | wc -l` + result=`cat docker_run_log | grep "Service Start completed" -m 1 | wc -l` if [ $result -ne 1 ];then exit 1; fi backend-configuration-service-build: runs-on: ubuntu-latest @@ -1669,7 +1669,7 @@ jobs: - name: Get standard output run: | cat docker_run_log - result=`cat docker_run_log | grep "No messages for us right now!" -m 1 | wc -l` + result=`cat docker_run_log | grep "Service Start completed" -m 1 | wc -l` if [ $result -ne 1 ];then exit 1; fi - run: docker save microtingas/work-items-planning-service-container:latest -o work-items-planning-service-container.tar - uses: actions/upload-artifact@v4