Simplify TS numbers draws : make code slightly more consistent and un… #6915
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: Branch name validation | |
on: | |
push: | |
jobs: | |
valid-branch-name: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Verify branch name | |
run: | | |
if ! [[ "$GITHUB_REF_NAME" =~ ^feature/.*|^features/.*|^fix/.*|^release/.*|^doc/.*|develop|^issue-* ]]; then | |
exit 1 | |
fi |