summaryrefslogtreecommitdiff
path: root/danger/plugins
Commit message (Collapse)AuthorAgeFilesLines
* Extract roulette to its own moduleLin Jen-Shin2019-05-302-3/+10
| | | | So it's more modular and extensible
* Reviewer roulette via Danger56087-danger-rouletteNick Thomas2019-02-131-50/+9
| | | | | | Make danger pick reviewers and maintainers at random, for feontend, backend, database, etc, changes, whenever files belonging to those teams get changed.
* Move the ee? helper method into the helperNick Thomas2019-02-131-0/+5
|
* Move change category detection to a helperNick Thomas2019-02-131-0/+17
|
* Create helper to get all changed filesleipert-danger-fix-moved-filesLukas Eipert2018-10-221-0/+34
Danger apparently has three different objects which could contain files you often want to check: - git.added_files - git.modified_files - git.renamed_files The problem: If a file is renamed, `modified_files` contains the file path before the rename. In some Danger checks we use `added_files` + `modified_files`, which might contain the deleted paths of renamed files, but missing the new paths of renamed files. So we need to consider `renamed_files` as well.