From 6e12bdb4f4a7144e9eda9a9fc8ae4a681adf8fb1 Mon Sep 17 00:00:00 2001 From: LiteObject Date: Thu, 22 May 2025 14:29:49 -0500 Subject: [PATCH 1/2] Remove commented-out code for generating diff with unified context set to 0 --- .github/workflows/code-review.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/code-review.yml b/.github/workflows/code-review.yml index cf53e6e..7db6431 100644 --- a/.github/workflows/code-review.yml +++ b/.github/workflows/code-review.yml @@ -29,7 +29,6 @@ jobs: run: | echo "Generating diff between ${{ github.base_ref }} and ${{ github.head_ref }}" git diff --unified=5 origin/${{ github.base_ref }}...${{ github.head_ref }} > changes.diff - # git diff --unified=0 origin/${{ github.event.pull_request.base.ref }}..${{ github.event.pull_request.head.ref }} > changes.diff # - name: Generate Diff # id: generate-diff From 39ec4d3c15ddb8352ab97186cac5507c318a33cb Mon Sep 17 00:00:00 2001 From: LiteObject Date: Thu, 22 May 2025 16:19:42 -0500 Subject: [PATCH 2/2] Update greeting message in InfoController's Get method for consistency --- 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 946f089..efe6e44 100644 --- a/src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs +++ b/src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs @@ -16,7 +16,7 @@ public InfoController(ILogger logger) [HttpGet(Name = "Get")] public IActionResult Get() { - var helloworld = "Hello World"; + var helloworld = "Hello World!!!"; // Log a message at the Information level var message = "Hello World from InfoController. This is a sample message."; _logger.LogInformation(message);