summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2019-01-12 01:44:42 +0000
committerRobert Speicher <rspeicher@gmail.com>2019-01-12 01:44:42 +0000
commit5b1baca17d2b2d529e53bfbcf16528c1f4535533 (patch)
treec3cbebc07b7079bce9604bc76bacf91cac05db7b
parentc4798ba6ef419e94970fd34ac8ea52328bacffaa (diff)
parentefe7f4f76878d88950c4193b81a7864f5d866935 (diff)
downloadgitlab-ce-5b1baca17d2b2d529e53bfbcf16528c1f4535533.tar.gz
Merge branch 'danger_commit_message_errors' into 'master'
Fix Danger commit message errors See merge request gitlab-org/gitlab-ce!24337
-rw-r--r--danger/commit_messages/Dangerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/danger/commit_messages/Dangerfile b/danger/commit_messages/Dangerfile
index 691dbbab184..c20c8b77e6a 100644
--- a/danger/commit_messages/Dangerfile
+++ b/danger/commit_messages/Dangerfile
@@ -2,6 +2,9 @@
require 'json'
+URL_LIMIT_SUBJECT = "https://chris.beams.io/posts/git-commit/#limit-50"
+URL_GIT_COMMIT = "https://chris.beams.io/posts/git-commit/"
+
# rubocop: disable Style/SignalException
# rubocop: disable Metrics/CyclomaticComplexity
# rubocop: disable Metrics/PerceivedComplexity
@@ -14,9 +17,6 @@ class EmojiChecker
DIGESTS = File.expand_path('../../fixtures/emojis/digests.json', __dir__)
ALIASES = File.expand_path('../../fixtures/emojis/aliases.json', __dir__)
- URL_LIMIT_SUBJECT = "https://chris.beams.io/posts/git-commit/#limit-50"
- URL_GIT_COMMIT = "https://chris.beams.io/posts/git-commit/"
-
# A regex that indicates a piece of text _might_ include an Emoji. The regex
# alone is not enough, as we'd match `:foo:bar:baz`. Instead, we use this
# regex to save us from having to check for all possible emoji names when we