Skip to content

Bump elliptic from 6.5.4 to 6.6.1 in /client-rest #21

Bump elliptic from 6.5.4 to 6.6.1 in /client-rest

Bump elliptic from 6.5.4 to 6.6.1 in /client-rest #21

Workflow file for this run

name: Lint PR Title
on:
pull_request:
types: [opened, synchronize, edited]
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Install commitizen"
run: pip install --user -U commitizen
- name: "Lint the PR title"
env:
TITLE: ${{ github.event.pull_request.title }}
run: cz check --message "${TITLE}" || { echo "see https://github.com/dtinit/data-transfer-project/blob/master/Documentation/Publishing.md#semantic-versioning-and-conventional-commits" >&2; exit 1; }