Skip to content

Update values.yaml #1050

Update values.yaml

Update values.yaml #1050

name: 'Assert Branch Naming Convention'
on:
push:
jobs:
branch-naming-rules:
runs-on: ubuntu-latest
steps:
- uses: deepakputhraya/action-branch-name@master
with:
regex: '[1-9][0-9]+-[a-z0-9-]+' # Regex the branch should match. This example enforces grouping
allowed_prefixes: 'DEV-,weekly-rc-,DEVOPS-,quality-' # All branches should start with the given prefix
ignore: master,main,saas # Ignore exactly matching branch names from convention
min_length: 5 # Min length of the branch name
max_length: 300 # Max length of the branch name