Skip to content

chore(deps): bump prettier from 3.2.4 to 3.2.5 (#300) #282

chore(deps): bump prettier from 3.2.4 to 3.2.5 (#300)

chore(deps): bump prettier from 3.2.4 to 3.2.5 (#300) #282

Workflow file for this run

name: Changelog
on:
push:
branches:
- main
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Conventional Changelog Action
id: changelog
uses: TriPSs/[email protected]
with:
github-token: ${{ secrets.github_token }}
output-file: 'false'
- name: Create Release
uses: actions/create-release@v1
if: ${{ steps.changelog.outputs.skipped == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
with:
tag_name: ${{ steps.changelog.outputs.tag }}
release_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}