|
2 anni fa | |
---|---|---|
.github | 2 anni fa | |
github-graphql | 2 anni fa | |
parser | 2 anni fa | |
src | 2 anni fa | |
templates | 2 anni fa | |
.dockerignore | 6 anni fa | |
.env.sample | 3 anni fa | |
.gitignore | 3 anni fa | |
Cargo.lock | 2 anni fa | |
Cargo.toml | 2 anni fa | |
Dockerfile | 2 anni fa | |
LICENSE-APACHE | 6 anni fa | |
LICENSE-MIT | 6 anni fa | |
README.md | 2 anni fa | |
rustfmt.toml | 3 anni fa | |
triagebot.toml | 3 anni fa |
This is the triage and team assistance bot for the rust-lang organization.
Please see the wiki for our documentation, and feel free to contribute edits if you find something helpful!
Triagebot consists of a webserver with several endpoints.
The /github-hook
and /zulip-hook
endpoints receive webhook notifications from the respective services.
Triagebot can then respond to those notifications to perform various actions such as adjusting labels.
The Triagebot webserver also includes several other endpoints intended for users to access directly, such as https://triage.rust-lang.org/agenda.
Triagebot uses a Postgres database to retain some state. In production, it uses RDS.
The server at https://triage.rust-lang.org/ runs on ECS and is configured via Terraform. Updates are automatically deployed when merged to master.
To compile the Triagebot you need OpenSSL development library to be installed (e.g. for Ubuntu-like Linux distributions sudo apt install libssl-dev
).
Run cargo build
to compile the triagebot.
It is possible to run triagebot yourself, and test changes against your own repository. Some developers may settle with testing in production as the risks tend to be low, but the more intrepid may find it easier to iterate separately.
The general overview of what you will need to do:
createdb triagebot
ngrok http 8000
to forward to port 8000 on localhost.Configure the webhook in your GitHub repo. I recommend at least skimming the GitHub webhook documentation if you are not familiar with webhooks. In short:
Include the settings:
ngrok
command above.Configure the .env
file:
.env.sample
to .env
GITHUB_API_TOKEN
: This is a token needed for Triagebot to send requests to GitHub. Go to GitHub Settings > Developer Settings > Personal Access Token, and create a new token. The repo
permission should be sufficient.
If this is not set, Triagebot will also look in ~/.gitconfig
in the github.oauth-token
setting.DATABASE_URL
: This is the URL to the Postgres database. Something like postgres://eric@localhost/triagebot
should work, replacing eric
with your username.GITHUB_WEBHOOK_SECRET
: Enter the secret you entered in the webhook above.RUST_LOG
: Set this to debug
.Run cargo run --bin triagebot
. This starts the http server listening on port 8000.
Add a triagebot.toml
file to the main branch of your GitHub repo with whichever services you want to try out.
Try interacting with your repo, such as issuing @rustbot
commands or interacting with PRs and issues (depending on which services you enabled in triagebot.toml
). Watch the logs from the server to see what's going on.
Triagebot is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT for details.