File tree 2 files changed +11
-10
lines changed
src/MyWebApi/MyWebApi/Controllers
2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -39,16 +39,16 @@ jobs:
39
39
echo "$DIFF" >> $GITHUB_ENV
40
40
echo "EOF" >> $GITHUB_ENV
41
41
42
- - name : Check Diff Size
43
- id : check_diff_size
44
- run : |
45
- set -e
46
- DIFF_SIZE=$(wc -c < change.diff)
47
- echo "diff_size=$DIFF_SIZE" >> $GITHUB_OUTPUT
48
- if (( DIFF_SIZE > 1000000 )); then
49
- echo "Diff is too large, skipping review."
50
- exit 0
51
- fi
42
+ # - name: Check Diff Size
43
+ # id: check_diff_size
44
+ # run: |
45
+ # set -e
46
+ # DIFF_SIZE=$(wc -c < change.diff)
47
+ # echo "diff_size=$DIFF_SIZE" >> $GITHUB_OUTPUT
48
+ # if (( DIFF_SIZE > 1000000 )); then
49
+ # echo "Diff is too large, skipping review."
50
+ # exit 0
51
+ # fi
52
52
53
53
# Step 4: Output the diff (optional)
54
54
- name : Print diff
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ public InfoController(ILogger<InfoController> logger)
16
16
[ HttpGet ( Name = "Get" ) ]
17
17
public IActionResult Get ( )
18
18
{
19
+ _logger . LogInformation ( "Hello World from InfoController!" ) ;
19
20
return Ok ( "Hello World" ) ;
20
21
}
21
22
}
You can’t perform that action at this time.
0 commit comments