Skip to content

Commit 81e1f55

Browse files
committed
Changelog: Print Issue and Pull Requests Body
Changelog docker file updated to use a fork with the pull request „Optionally Print Issue and Pull Requests Body“ (github-changelog-generator/github-changelog-generator#616) which is not yet merged in the original repo.
1 parent 388c578 commit 81e1f55

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

contrib/elektra-changelog-builder/.github_changelog_generator

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ project=elektra
22
user=sapcc
33
since_tag=2018.1
44
output=/host/CHANGELOG.md
5+
issue_line_body=true

contrib/elektra-changelog-builder/Dockerfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@ FROM alpine:3.6
22

33
ENV GITHUB_CHANGELOG_GENERATOR_VERSION "1.14.3"
44

5-
RUN apk --no-cache add ruby ruby-json libstdc++ tzdata bash ca-certificates
5+
RUN apk --no-cache add ruby ruby-json libstdc++ tzdata bash ca-certificates git
66
RUN echo 'gem: --no-document' > /etc/gemrc
7-
RUN gem install github_changelog_generator --version $GITHUB_CHANGELOG_GENERATOR_VERSION
7+
8+
RUN git clone https://github.com/ArtieReus/github-changelog-generator.git -b include_body_issue
9+
WORKDIR /github-changelog-generator
10+
RUN gem build github_changelog_generator.gemspec
11+
RUN gem install github_changelog_generator-1.15.0.pre.rc.gem
12+
WORKDIR /
13+
# RUN gem install github_changelog_generator --version $GITHUB_CHANGELOG_GENERATOR_VERSION
814

915
COPY .github_changelog_generator /
1016

0 commit comments

Comments
 (0)