Skip to content

fix: lint issues and add lint workflow (#73) #43

fix: lint issues and add lint workflow (#73)

fix: lint issues and add lint workflow (#73) #43

Workflow file for this run

name: Releases
on:
push:
branches:
- main
jobs:
changelog:
name: Changelog
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Changelog + Version update
id: changelog
uses: TriPSs/conventional-changelog-action@v3
with:
github-token: ${{ secrets.PA_TOKEN}}
version-file: './package.json,./package-lock.json'
- name: Create Release
if: steps.changelog.outputs.skipped == 'false'
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.PA_TOKEN }}
tag : ${{ steps.changelog.outputs.tag }}
name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}