diff options
Diffstat (limited to 'danger/plugins/changelog.rb')
-rw-r--r-- | danger/plugins/changelog.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/danger/plugins/changelog.rb b/danger/plugins/changelog.rb new file mode 100644 index 00000000000..84f399e9e97 --- /dev/null +++ b/danger/plugins/changelog.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +require_relative '../../lib/gitlab/danger/changelog' + +module Danger + class Changelog < Plugin + # Put the helper code somewhere it can be tested + include Gitlab::Danger::Changelog + end +end |