Closed
Description
Hi there,
We like to include the changelog for every update to our templates.
Currently we pass the release changelogs to the --message
section of the coder templates push
command, like this (via github actions):
- name: "Push template"
run: |
coder templates push $CODER_TEMPLATE_NAME --directory $CODER_TEMPLATE_DIR --yes --name="$CODER_TEMPLATE_VERSION" --message="$CODER_TEMPLATE_MESSAGE"
env:
...
CODER_TEMPLATE_MESSAGE: ${{ gitea.event.release.body }}
While the release notes looks like this:
The changelog then looks like this:
It would be nice, if we can have multiline or markdown support, so it looks more like this:
Thanks!