Skip to content
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
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
- [Pinging](./triagebot/pinging.md)
- [Rendered link](./triagebot/rendered-link.md)
- [Requesting Prioritization](./triagebot/requesting-prioritization.md)
- [Review Changes Since](./triagebot/review-changes-since.md)
- [Review Changes Requested](./triagebot/review-submitted.md)
- [Review Requested](./triagebot/review-requested.md)
- [Rustc Commit Tracking](./triagebot/rustc-commit-list.md)
Expand Down
19 changes: 19 additions & 0 deletions src/triagebot/review-changes-since.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Review Changes Since

This feature will automatically adjust the body of a GitHub review to include a link to view the changes that happened since the review.

## Usage

When creating a pull request review, the bot will automatically append at the end of the review body a link to view the changes that happened since the review.

## Configuration

This feature is enabled on a repository by having a `[review-changes-since]` table in `triagebot.toml`:

```toml
[review-changes-since]
```

## Implementation

See [`src/handlers/review_changes_since.rs`](https://github.com/rust-lang/triagebot/blob/HEAD/src/handlers/review_changes_since.rs).