0.03
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Danger plugin to automatically mention potential reviewers on pull requests.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 2.14
~> 10.0
~> 3.4
~> 0.41
~> 0.8

Runtime

>= 2.0.0
 Project Readme

Danger Mention

A Danger plugin to automatically mention potential reviewers on pull requests on GitHub and GitLab.

Note: This plugin uses the web-scraping of GitHub.com and GitLab to detect the authors to find potential reviewers. This might cause the plugin to break if either of those pages introduce design changes.

Installation

$ gem install danger-mention

Usage

The easiest way to use is just add this to your Dangerfile:

mention.run
Running plugin with reviewers count specified
# Find maximum two reviewers
mention.run(2, [], [])
Running plugin with some files blacklisted
# Find reviewers without parsing blame information
# from files matching to 'Pods/*'
mention.run(2, ["Pods/*"], [])
Running plugin with some users blacklisted
# Find reviewers ignoring users 'wojteklu' and 'danger'
mention.run(2, [], ["wojteklu", "danger"])

License

This project is licensed under the terms of the MIT license. See the LICENSE file.