Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/savage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <github@rebertia.com>2015-05-23 04:32:44 +0300
committerChris Rebert <github@rebertia.com>2015-05-23 04:32:44 +0300
commit211057497cd98cb21f2794e001caa3832a06e58f (patch)
tree3af11d4f9489ac5fb7313c458bd1931ab69c082e
parentf227cbe05ebf80838928bb6be6e2da52cefc09f0 (diff)
README: add badge indicating development status
Using the Trove classifiers scheme (same as PyPI; see https://pypi.python.org/pypi?%3Aaction=list_classifiers) [ci skip]
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index e969a35..70c997a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
Savage
======
[![Build Status](https://travis-ci.org/twbs/savage.svg?branch=master)](https://travis-ci.org/twbs/savage)
+![Development Status :: 4 - Beta](https://img.shields.io/badge/maturity-beta-yellowgreen.svg "Development Status :: 4 - Beta")
[![MIT License](https://img.shields.io/github/license/twbs/savage.svg)](https://github.com/twbs/savage/blob/master/LICENSE.txt)
Savage is a service watches for new or updated pull requests on a given GitHub repository. For each pull request, it evaluates whether the changes are "safe" (i.e. we can run a Travis CI build with them with heightened permissions without worrying about security issues) and "interesting" (i.e. would benefit from a Travis CI build with them with heightened permissions), based on which files were modified. If the pull request is "safe" and "interesting", then it initiates a Travis CI build with heightened permissions on a specified GitHub repository. When the Travis CI build completes, it posts a comment ([like this one](https://github.com/twbs/bootstrap/pull/15178#issuecomment-63756231)) with the test results on the pull request. If the test failed, the pull requester can then revise their code to fix the problem.