add spark SCC, add image hub to operator #897
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |