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 @@ -38,6 +38,7 @@
- [Triagebot Dashboard](./triagebot/triage-dashboard.md)
- [Zulip Meeting Management](./triagebot/zulip-meeting.md)
- [Zulip Notifications](./triagebot/zulip-notifications.md)
- [GitHub Actions created PR open/closer](./triagebot/bot-pull-requests.md)
- [Community](./community/README.md)
- [State of Rust Survey FAQ](./community/survey-faq.md)
- [Compiler](./compiler/README.md)
Expand Down
17 changes: 17 additions & 0 deletions src/triagebot/bot-pull-requests.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# GitHub Actions created PR open/closer

This automation triggers an automatic close & reopen on PRs opened by the
`github-actions` user, i.e., from a GitHub actions job. This enables CI to run
on those PRs without needing a manual poke from some human.

## Configuration

This feature is enabled on a repository by having a `[bot-pull-requests]` table in `triagebot.toml`:

```toml
[bot-pull-requests]
```

## Implementation

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