From f6818c254e24d618fbfdcf585dbde4f0f61de77a Mon Sep 17 00:00:00 2001 From: LiteObject Date: Fri, 4 Apr 2025 14:21:07 -0500 Subject: [PATCH 1/2] Fix message formatting in InfoController's Get method --- src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs b/src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs index 7b6c64c..cc81e70 100644 --- a/src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs +++ b/src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs @@ -17,7 +17,7 @@ public InfoController(ILogger logger) public IActionResult Get() { // Log a message at the Information level - var message = "Hello World from InfoController!!!"; + var message = "Hello World from InfoController."; _logger.LogInformation(message); return Ok(message); } From 88af622032f79336a3990e04edefcbb6d934fec9 Mon Sep 17 00:00:00 2001 From: LiteObject Date: Fri, 4 Apr 2025 14:22:06 -0500 Subject: [PATCH 2/2] Comment out the upload response artifact step in code review workflow --- .github/workflows/code-review.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/code-review.yml b/.github/workflows/code-review.yml index 0f69e67..c67c13a 100644 --- a/.github/workflows/code-review.yml +++ b/.github/workflows/code-review.yml @@ -79,9 +79,9 @@ jobs: echo "$RAW_RESPONSE" > response.json if: always() - - name: Upload Response as Artifact - uses: actions/upload-artifact@v4 - with: - name: llM-response - path: response.json - if: always() \ No newline at end of file + # - name: Upload Response as Artifact + # uses: actions/upload-artifact@v4 + # with: + # name: llM-response + # path: response.json + # if: always() \ No newline at end of file