Skip to content

chore(deps-dev): bump @commitlint/cli from 19.2.1 to 19.2.2 #124

chore(deps-dev): bump @commitlint/cli from 19.2.1 to 19.2.2

chore(deps-dev): bump @commitlint/cli from 19.2.1 to 19.2.2 #124

Workflow file for this run

name: Create a release
on:
workflow_dispatch:
inputs:
semver:
description: The semver to use
required: true
default: patch
type: choice
options:
- patch
- minor
- major
pull_request:
types: [closed]
jobs:
release:
permissions:
contents: write
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node.js runtime on build
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- uses: nearform-actions/optic-release-automation-action@v4
with:
semver: ${{ github.event.inputs.semver }}
commit-message: 'chore: release {version}'
sync-semver-tags: true
build-command: |
echo 'installing husky hooks..'
npm ci