Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.15 KB

Readme.md

File metadata and controls

30 lines (23 loc) · 1.15 KB

Branch naming rules

GitHub Actions status

Github action to enforce naming convention on branch names

Usage

See action.yml

name: 'Assert Branch Naming Convention'
on: pull_request

jobs:
  branch-naming-rules:
    runs-on: ubuntu-latest
    steps:
      - uses: payble-payments/action-branch-name@main
        with:
          regex: '([a-z])+\/([a-z])+' # Regex the branch should match. This example enforces grouping
          allowed_prefixes: 'feature,stable,fix' # All branches should start with the given prefix
          ignore: master,develop # Ignore exactly matching branch names from convention
          min_length: 5 # Min length of the branch name
          max_length: 20 # Max length of the branch name

This action was forked from deepakputhraya/action-branch-name and updated using the template in javascript-action.

License

The scripts and documentation in this project are released under the MIT License