From 66f319fb5aa10959e39a6e02a54210f04fafa3fc Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Tue, 7 Nov 2017 22:34:37 -0600 Subject: [PATCH] Add `probot` to words banned from descriptions --- test/lint_test.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/lint_test.rb b/test/lint_test.rb index c3ee586..520caef 100644 --- a/test/lint_test.rb +++ b/test/lint_test.rb @@ -7,7 +7,8 @@ describe "lint test" do BANNED_WORDS = Regexp.new('\b(' + [ "GitHub App", # They're all GitHub Apps "bot", # TODO: link to docs about why bot is not preferred - "automatically" # They're all automatic + "automatically", # They're all automatic + "probot", # Now you're just name dropping ].join('|') + ')\b', Regexp::IGNORECASE | Regexp::MULTILINE) Dir.glob("_apps/*.md").each do |path|