Skip to content

fix(core): avoid to prev button hiding during loop #4

fix(core): avoid to prev button hiding during loop

fix(core): avoid to prev button hiding during loop #4

Workflow file for this run

name: PR Title Check
on:
pull_request:
types: [opened]
jobs:
pr-title:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Validate PR Title
run: |
if [[ ! "${{ github.event.pull_request.title }}" =~ ^(feat|fix|chore|major|docs|ci))\([a-zA-Z0-9_-]+\):\ .+$ ]]; then
echo "The Pull Request title must follow the convention: 'type(context): description'."
"The types must be: feat, fix, chore, major."
echo "Example of a correct title: feat(component): create link component"
exit 1
fi