Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

deps(dev): bump @libp2p/interface-mocks from 10.0.3 to 12.0.1 #40

deps(dev): bump @libp2p/interface-mocks from 10.0.3 to 12.0.1

deps(dev): bump @libp2p/interface-mocks from 10.0.3 to 12.0.1 #40

name: "Semantic PR"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@b6bca70dcd3e56e896605356ce09b76f7e1e0d39 # v5.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Configure which types are allowed (newline delimited).
types: |
feat
fix
chore
docs
deps
test
refactor
ci
requireScope: false
- name: Check PR title length
env:
TITLE: ${{ github.event.pull_request.title }}
run: |
title_length=${#TITLE}
if [ $title_length -gt 72 ]
then
echo "PR title is too long (greater than 72 characters)"
exit 1
fi