Skip to content

fix: decrease buttons horizontal padding #2

fix: decrease buttons horizontal padding

fix: decrease buttons horizontal padding #2

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