We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8a6026d + 7774de0 commit 9537a63Copy full SHA for 9537a63
.github/workflows/code-review.yml
@@ -36,7 +36,7 @@ jobs:
36
37
# Step 4: Upload the diff file as an artifact (optional)
38
- name: Upload Diff as Artifact
39
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
40
with:
41
name: pr-diff
42
path: changes.diff
src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs
@@ -17,7 +17,7 @@ public InfoController(ILogger<InfoController> logger)
17
public IActionResult Get()
18
{
19
// Log a message at the Information level
20
- var message = "Hello World from InfoController...";
+ var message = "Hello World from InfoController. This is a sample message.";
21
_logger.LogInformation(message);
22
return Ok(message);
23
}
0 commit comments