├── .gitignore ├── LICENSE.txt ├── README.md ├── list_pending.jpg ├── quorum_pending.jpg ├── requirements.txt ├── reviewer ├── __init__.py ├── app.py ├── config.py ├── reviewers.py └── tests.py ├── tox.ini └── webhook.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/README.md -------------------------------------------------------------------------------- /list_pending.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/list_pending.jpg -------------------------------------------------------------------------------- /quorum_pending.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/quorum_pending.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/requirements.txt -------------------------------------------------------------------------------- /reviewer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reviewer/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/reviewer/app.py -------------------------------------------------------------------------------- /reviewer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/reviewer/config.py -------------------------------------------------------------------------------- /reviewer/reviewers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/reviewer/reviewers.py -------------------------------------------------------------------------------- /reviewer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/reviewer/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/tox.ini -------------------------------------------------------------------------------- /webhook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielhora/github_reviewer/HEAD/webhook.jpg --------------------------------------------------------------------------------