Releases: rdelfin/min-review-bot
Releases · rdelfin/min-review-bot
Release list
v0.2.2
0.2.2
We recommend setting this up with docker compose. Here's a sample docker compose for this version:
version: '3'
services:
daemon:
image: rdelfin/min_review_bot:0.2.2
volumes:
- ./config.toml:/etc/reviewbot/config.toml:ro
- ./private_key.pem:/etc/reviewbot/private_key.pem:ro
- ./data:/var/cache/reviewbot:rw
restart: always
network_mode: "host"
command: ["min_review_daemon", "--config", "/etc/reviewbot/config.toml"]And this should be accompanied by a matching config:
repo = "YOUR_REPO"
bot_username = "YOUR BOT'S USERNAME"
sleep_period = { secs = 60, nanos = 0 }
# This should be a list of users that have this bot enabled. We will change this
# to a blocklist in a future release
users = [
"user1",
"user2",
]
db_path = "/var/cache/reviewbot/data.db"
[github]
private_key_path = "PATH_TO_GITHUB_APP_PEM_FILE"
app_id = YOUR_GITHUB_APP_IDWhat's Changed
- [chore] Update dependencies. by @jltorresm in #4
New Contributors
- @jltorresm made their first contribution in #4
Full Changelog: v0.2.1...v0.2.2
v0.2.1
0.2.1
We recommend setting this up with docker compose. Here's a sample docker compose for this version:
version: '3'
services:
daemon:
image: rdelfin/min_review_bot:0.2.1
volumes:
- ./config.toml:/etc/reviewbot/config.toml:ro
- ./private_key.pem:/etc/reviewbot/private_key.pem:ro
- ./data:/var/cache/reviewbot:rw
restart: always
network_mode: "host"
command: ["min_review_daemon", "--config", "/etc/reviewbot/config.toml"]And this should be accompanied by a matching config:
repo = "YOUR_REPO"
bot_username = "YOUR BOT'S USERNAME"
sleep_period = { secs = 60, nanos = 0 }
# This should be a list of users that have this bot enabled. We will change this
# to a blocklist in a future release
users = [
"user1",
"user2",
]
db_path = "/var/cache/reviewbot/data.db"
[github]
private_key_path = "PATH_TO_GITHUB_APP_PEM_FILE"
app_id = YOUR_GITHUB_APP_IDFull Changelog: v0.2.0...v0.2.1
v0.2.0
0.2.0
We recommend setting this up with docker compose. Here's a sample docker compose for this version:
version: '3'
services:
daemon:
image: rdelfin/min_review_bot:0.2.0
volumes:
- ./config.toml:/etc/reviewbot/config.toml:ro
- ./private_key.pem:/etc/reviewbot/private_key.pem:ro
- ./data:/var/cache/reviewbot:rw
restart: always
network_mode: "host"
command: ["min_review_daemon", "--config", "/etc/reviewbot/config.toml"]And this should be accompanied by a matching config:
repo = "YOUR_REPO"
bot_username = "YOUR BOT'S USERNAME"
sleep_period = { secs = 60, nanos = 0 }
# This should be a list of users that have this bot enabled. We will change this
# to a blocklist in a future release
users = [
"user1",
"user2",
]
db_path = "/var/cache/reviewbot/data.db"
[github]
private_key_path = "PATH_TO_GITHUB_APP_PEM_FILE"
app_id = YOUR_GITHUB_APP_IDWhat's Changed
New Contributors
Full Changelog: https://github.com/rdelfin/min-review-bot/commits/v0.2.0