From 3e17da38fbe08077eb386460c3f854c3a47c1c8b Mon Sep 17 00:00:00 2001 From: LiteObject Date: Fri, 4 Apr 2025 14:17:40 -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 b481834..7b6c64c 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 d57a5bd7bf7fb6ab29102bef26028d1b09fa3965 Mon Sep 17 00:00:00 2001 From: LiteObject Date: Fri, 4 Apr 2025 14:20:16 -0500 Subject: [PATCH 2/2] Update artifact upload step in code review workflow to use actions/upload-artifact@v4 and rename response artifact --- .github/workflows/code-review.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-review.yml b/.github/workflows/code-review.yml index 6c6c4b8..0f69e67 100644 --- a/.github/workflows/code-review.yml +++ b/.github/workflows/code-review.yml @@ -80,8 +80,8 @@ jobs: if: always() - name: Upload Response as Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: ollama-response + name: llM-response path: response.json if: always() \ No newline at end of file