Skip to content

CSR - add output vars (ANT-2295) : it's cleaner to have a couple of f… #11702

CSR - add output vars (ANT-2295) : it's cleaner to have a couple of f…

CSR - add output vars (ANT-2295) : it's cleaner to have a couple of f… #11702

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