From fd06d09e872f60d1bbf78d2a80b90cc2f56e9338 Mon Sep 17 00:00:00 2001 From: edunham Date: Wed, 27 May 2015 16:18:38 -0700 Subject: [PATCH] Add a basic CONTRIBUTING guide --- CONTRIBUTING.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..007c607 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,30 @@ +# Contributing to the Rust-Buildbot infrastructure + +Thank you for your interest in contributing to our infrastructure! The +workflow for this project is similar to, but simpler than, that of the [Rust +language][rust]. + +## Making Changes + +Submit your changes as a pull request to this repository. If there's a +specific contributor who should review the change, mention them with `r? +@theirname` in the body of your commit message. + +The rust-highfive bot will take a look at your PR and make sure you have a +reviewer. + +After all of the reviewer's concerns have been addressed, anyone with +permissions can merge your PR. + +## Testing Changes + +If you're an enterprising contributor who'd like to spin up your very own +intsance of rust-buildbot for any reason, we need your help! + +It isn't easy to run your own rust-buildbot for testing changes (or any other +reason) right now, but we're working on it! If you have any specific +complaints about why contributing to this project is hard, please file issues +about them or comment about them on [this issue][issue]! + +[rust]: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md +[issue]: https://github.com/rust-lang/rust-buildbot/issues/15