Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

fix: update dictionaries for typo (#817) #163

fix: update dictionaries for typo (#817)

fix: update dictionaries for typo (#817) #163

Workflow file for this run

name: Releases
on:
push:
branches:
- main
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v5
with:
github-token: ${{ secrets.CHANGELOG_RELEASE }}
- name: create release
uses: softprops/action-gh-release@v2
if: ${{ steps.changelog.outputs.skipped == 'false' }}
with:
name: ${{ steps.changelog.outputs.tag }}
tag_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}
token: ${{ secrets.CHANGELOG_RELEASE }}