forked from rust-lang/rust-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs for bot PR triagebot handler
- Loading branch information
1 parent
6d57c03
commit 9fde58d
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |