chore(deps): update eslint packages (major) #8677
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: | |
if: ${{ ! contains(github.event.pull_request.labels.*.name, 'skip ci') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: aslafy-z/conventional-pr-title-action@v3 | |
with: | |
success-state: Title follows the Conventional Commits. | |
failure-state: Title does not follow the Conventional Commits. | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |