fix bug occuring when not all of the thermal clusters are participati… #11820
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-*|^dependabot/* ]]; then | |
exit 1 | |
fi |