Skip to content

Create a flow that runs in system mode #97

Create a flow that runs in system mode

Create a flow that runs in system mode #97

Workflow file for this run

name: Enforce Branch Naming
on:
push:
branches-ignore:
- main
- dev
jobs:
validate-branch-name:
runs-on: ubuntu-latest
steps:
- name: 'Validate Branch Name'
uses: deepakputhraya/action-branch-name@master
with:
regex: '([a-z])+\/([a-z])+'
allowed_prefixes: 'feature,bugfix'
min_length: 6