We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68ea866 commit aaf45c4Copy full SHA for aaf45c4
.github/workflows/ci/helpers.sh
@@ -151,11 +151,13 @@ EOF
151
done
152
run pandoc --from=gfm --to=gfm \
153
--lua-filter=.github/RELEASE_DRAFT_FILTER.lua \
154
- --template=.github/RELEASE_DRAFT_TEMPLATE.md \
155
- --shift-heading-level-by=1 --wrap=none \
156
- --variable="version:$RELEASE_VERSION" \
157
- --output=notes.md \
158
- "$notes_body" || die
+ "$notes_body" \
+ | \
+ pandoc --from=gfm --to=gfm \
+ --template=.github/RELEASE_DRAFT_TEMPLATE.md \
+ --shift-heading-level-by=1 --wrap=none \
159
+ --variable="version:$RELEASE_VERSION" \
160
+ --output=notes.md || die
161
if [ -n "$overwrite" ]
162
then
163
# Is there an existing release?
0 commit comments