docs: update readme #91
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PR title | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: aslafy-z/conventional-pr-title-action@master | |
with: | |
success-state: Title follows the conventional commit specification. | |
failure-state: Title does not follow the conventional commit specification. | |
context-name: conventional-pr-title | |
preset: conventional-changelog-angular@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |