Skip to content

Simplify calls to solver (after modeler 3.1) : move code where it bel… #11560

Simplify calls to solver (after modeler 3.1) : move code where it bel…

Simplify calls to solver (after modeler 3.1) : move code where it bel… #11560

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