Bump @stylistic/eslint-plugin from 2.6.2 to 2.12.1 #236
Workflow file for this run
This file contains hidden or 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 |