diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-12 15:08:41 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-12 15:08:41 +0000 |
commit | 27859ed5eaeae234162b7cce7fd8bd351b5f9369 (patch) | |
tree | 5a62db348c3fd73516df87262c78e3546d4ec770 /danger/plugins/changelog.rb | |
parent | 784fae4b9d7e92350075df2a43d06893080ed1e6 (diff) | |
download | gitlab-ce-27859ed5eaeae234162b7cce7fd8bd351b5f9369.tar.gz |
Add latest changes from gitlab-org/gitlab@master
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 |