build(deps): bump @babel/traverse from 7.20.1 to 7.23.2 #671
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 | |
# This workflow is triggered on pushes to the repository. | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
jobs: | |
build: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
name: Check that PR is associated with Jira ticket | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: deepakputhraya/action-pr-title@master | |
with: | |
regex: '([A-Z]+)\-\d+\:\s+.*' | |
disallowed_prefixes: "release/,feature/,feat/,hotfix" | |
prefix_case_sensitive: false | |
min_length: 5 | |
max_length: 100 | |
github_token: ${{ github.token }} # Default: ${{ github.token }} |