changelog #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/release.yml | |
#checkov:skip=CKV_GHA_7:We build changelog manually for now | |
name: changelog | |
on: | |
workflow_dispatch: | |
inputs: | |
from_tag: | |
description: "Starting Tag" | |
required: true | |
type: string | |
to_tag: | |
description: "Release version" | |
required: true | |
type: string | |
permissions: | |
contents: write | |
# packages: write | |
# issues: write | |
# id-token: write | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build Changelog | |
id: github_release_changelog | |
uses: mikepenz/release-changelog-builder-action@v5 | |
with: | |
fromTag: ${{ github.event.inputs.from_tag }} | |
toTag: ${{ github.event.inputs.to_tag }} | |
configurationJson: | | |
{ | |
"categories": [ | |
{ | |
"title": "## 🚀 Features", | |
"labels": ["feature","feat","Feature","Feat"] | |
}, | |
{ | |
"title": "## 🐛 Fixes", | |
"labels": ["fix","fixes", "bug", "bugs", "Fix", "Fixes", "Bug", "Bugs"] | |
}, | |
{ | |
"title": "## 🧪 Tests", | |
"labels": ["test", "tests", "Test", "Tests"] | |
}, | |
{ | |
"title": "## 📦 Uncategorized", | |
"labels": [] | |
} | |
], | |
"label_extractor": [ | |
{ | |
"pattern": "^.?(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test|tests).?.*", | |
"target": "$1", | |
"method": "regexr", | |
"on_property": "title" | |
} | |
], | |
} | |
- name: Update Release | |
uses: mikepenz/[email protected] #softprops/action-gh-release | |
with: | |
tag_name: ${{ github.event.inputs.to_tag }} | |
body: ${{steps.github_release_changelog.outputs.changelog}} |