Skip to content

Released version 0.2.56 of the helm chart #96

Released version 0.2.56 of the helm chart

Released version 0.2.56 of the helm chart #96

Workflow file for this run

name: 'Changelogs'
on:
push:
tags:
- '*'
jobs:
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Build Changelog
id: github_release
uses: mikepenz/release-changelog-builder-action@v4
with:
configurationJson: |
{
"pr_template": "- #{{TITLE}}",
"tag_resolver": {
"method": "semver",
"transformer": {
"pattern": "home-assistant-(.+)",
"target": "$1"
}
}
}
commitMode: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Print output
run: echo "${{steps.github_release.outputs.changelog}}"
- name: Create Release
uses: mikepenz/[email protected] #softprops/action-gh-release
with:
body: ${{steps.github_release.outputs.changelog}}