chore(deps): bump pre-commit from 3.4.0 to 3.5.0 #286
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
# DESCRIPTION: | |
# A workflow used by both: code and CI repositories for verifying | |
# if PR titles matches conventional commits strategy. | |
# END | |
name: Lint PR Title | |
permissions: | |
pull-requests: read | |
on: | |
workflow_call: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
main: | |
name: Validate PR title matches conventional commits | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |