Reviewing Pull requests
If a user does not have permission to merge code directly into a repository then you will need to make a Pull Request (PR).
Otherwise known as Merge Request (MR).
In a PR the user requests the owners of teh repository to approve merging in the changes.
The repository owners review teh changes.
They are able to leave comments, approvals or disapprovals.
Sometimes there are pipelines which need to be successful (such as checking LFS objects).
Process
For this we are going to focus on Forgejo only, although all major git hosts are quite similar.
We are going to use this PR as an example:
https://forgejo.skynet.ie/Computer_Society/open-goverance/pulls/77
Review on the Web
Typically a pull request has 3 screens: Conversation, Commits and Files Changed.

Conversation
This tab contains the initial comment which should include the reasoning behind a PR.
As well as any relevant information that might be useful to the reviewers.
It is this tab which will showcase the summary of the process, any comments, reviews or any new commits added.
If changes are requested they will show up here.
Pipelines passing/failing will also be showcased near the bottom.
Commits
The commits tab has a list of all commits in the PR.
Clicking on any of them will show you the commit itself.
Files Changed
This is the core section for the review process.
The files are listed, along side the line by line changes within them.

If you click the - or + next to teh line numbers you can leave a comment.

If you select Add single comment then it will just add a comment on teh code.
This is not a review, just a comment.
If you select Start Review then you can leave multiple comments.
They will show up as Pending

To finish the review you need to click the Finish review in the top right, it will state how many comments there are.
At this stage you can select Review/Comment/Request Changes.
(It is greyed out because the PR author cannot approve their own PR)

Checkout the code locally
Checking out teh code visually on the web is good for checking minor changes.
However you may want to check out code changes and run them locally on your machine.
To do this you need to use command line git.
if you select View command line instructions near teh bottom of the page.

It will open up like so.
This command will allow you to pull down the changes locally.
If Allow edits from maintainers is enabled then you will also be able to push to it if needs be.