This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
chore(deps): update dependency @voiceflow/eslint-config to v7 (vf-000) #1794
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: PR Validation | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
jobs: | |
pr-title-validation: | |
name: Checks if the PR title is valid | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- uses: deepakputhraya/action-pr-title@master | |
with: | |
regex: ${{ secrets.PR_TITLE_REGEX }} # Regex the title should match. | |
github_token: ${{ secrets.GH_SA_TOKEN }} |