Skip to content

feat(link): set default color and add size prop #29

feat(link): set default color and add size prop

feat(link): set default color and add size prop #29

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