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 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);