Skip to content

Merge branch 'feature/4.6-system-import' of https://github.com/Antare… #12245

Merge branch 'feature/4.6-system-import' of https://github.com/Antare…

Merge branch 'feature/4.6-system-import' of https://github.com/Antare… #12245

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