Bump @typescript-eslint/eslint-plugin from 8.1.0 to 8.20.0 #251
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: Validate Branch Name on Pull Request | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
validate-branch-name-on-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Validate Branch Name on Pull Request | |
run: | | |
BRANCH_NAME=${GITHUB_HEAD_REF} | |
if [[ ! "$BRANCH_NAME" =~ ^(feature\/|fix\/|refactoring\/|testing\/|dependabot\/|gh-pages) ]]; then | |
echo "Invalid branch name: $BRANCH_NAME" | |
echo "Branch name must start with 'feature/', 'fix/', 'refactoring/', 'testing/', dependabot/" or "gh-pages" | |
exit 1 | |
fi |