Skip to content

Commit 167cc04

Browse files
authored
Merge pull request #18 from LiteObject/feature/refactor_code
Feature/refactor code
2 parents 25b1b17 + 39ec4d3 commit 167cc04

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/code-review.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
run: |
3030
echo "Generating diff between ${{ github.base_ref }} and ${{ github.head_ref }}"
3131
git diff --unified=5 origin/${{ github.base_ref }}...${{ github.head_ref }} > changes.diff
32-
# git diff --unified=0 origin/${{ github.event.pull_request.base.ref }}..${{ github.event.pull_request.head.ref }} > changes.diff
3332
3433
# - name: Generate Diff
3534
# id: generate-diff

src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public InfoController(ILogger<InfoController> logger)
1616
[HttpGet(Name = "Get")]
1717
public IActionResult Get()
1818
{
19-
var helloworld = "Hello World";
19+
var helloworld = "Hello World!!!";
2020
// Log a message at the Information level
2121
var message = "Hello World from InfoController. This is a sample message.";
2222
_logger.LogInformation(message);

0 commit comments

Comments
 (0)