Skip to content

Split thermal TS generation : raised an error if a prepro file does n… #9685

Split thermal TS generation : raised an error if a prepro file does n…

Split thermal TS generation : raised an error if a prepro file does n… #9685

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-*|^dependabot/* ]]; then
exit 1
fi