Skip to content

Fix message formatting in InfoController's Get method #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ jobs:
echo "$RAW_RESPONSE" > response.json
if: always()

- name: Upload Response as Artifact
uses: actions/upload-artifact@v4
with:
name: llM-response
path: response.json
if: always()
# - name: Upload Response as Artifact
# uses: actions/upload-artifact@v4
# with:
# name: llM-response
# path: response.json
# if: always()
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public InfoController(ILogger<InfoController> logger)
public IActionResult Get()
{
// Log a message at the Information level
var message = "Hello World from InfoController!!!";
var message = "Hello World from InfoController.";
_logger.LogInformation(message);
return Ok(message);
}
Expand Down
Loading