Scans open Bitbucket pull requests for a configurable trigger string and merges them for you.
This is largely a ~~ripoff~~ port of polly-merge into async Rust. There's a bit of speedup gained, but this is mostly just an uncreative excuse to try out async/await in Rust 👨🏽🎓
Install via Cargo:
sh
cargo install crabby-merge
Ideally, you'd schedule crabby-merge to be run periodically. To accomplish this with cron,
on a Unix-like machine, run crontab -e
and add an entry like:
```text
*/2 * * * * $HOME/.cargo/bin/crabby-merge ```
In $HOME/.crabby_merge.toml
:
```toml
bitbucket_url = "your URL goes here"
bitbucketapitoken = "your token goes here"
merge_trigger = "^:shipit:$"
check_description = true
check_comments = false
checkownprs = true
checkapprovedprs = false ```
All fields are optional unless indicated. Values shown are the default values.
Each of the TOML keys listed above can be prefixed with CRABBY_MERGE
and provided as an
environment variable. Keys are case-insensitive.
For example, you can pass in the bitbucket API token as CRABBY_MERGE_API_TOKEN=<your token here>
.
There is experimental support for rebuilding failed Jenkins builds whose name matches a provided
regex trigger. This is a sad workaround for flaky blocking tests. This is compile-time gated by the
jenkins
feature, which is enabled by default.
To use it, add the following fields to your configuration file. If these fields aren't provided, the retry functionality will be disabled at runtime.
```toml jenkinsusername = "" jenkinspassword = ""
jenkinsretrytrigger = ""
jenkinsretrylimit = "" ```