mirror of
https://github.com/discourse/discourse.git
synced 2025-09-04 08:47:37 +08:00
DEV: simpler Dangerfile logic (#6911)
This commit is contained in:
parent
426907cb88
commit
6f0bc16baf
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ if locales_changes.any? && has_non_en_locales_changes
|
|||
end
|
||||
|
||||
files = (git.added_files + git.modified_files)
|
||||
.reject! { |path| path.start_with?("plugins/") }
|
||||
.reject! { |path| !(path.end_with?("es6") || path.end_with?("rb")) }
|
||||
.select { |path| !path.start_with?("plugins/") }
|
||||
.select { |path| path.end_with?("es6") || path.end_with?("rb") }
|
||||
|
||||
super_offenses = []
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue