Skip to content

Commit

Permalink
Merge pull request #283 from Bixal/feature/BSD-281-stage-branch-name
Browse files Browse the repository at this point in the history
BSD fixes #281: Allow stage as a valid branch name.
  • Loading branch information
mattsqd authored Aug 28, 2024
2 parents 0af48f3 + a6b22ac commit 76a3adf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions robo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,19 @@ command:
- ' - Starts and end with a letter or integer.'
- ' - Contains letters, integers, or dashes (non-consecutive).'
- ' - At least 5 characters long.'
# These refer to all the possible branch names. There are 4 different types and they will be
# described below. If you'd like to override any of these, you must put all back in that you'd like to
# use, they will not be merged together.
valid-branch-names:
# Matches a branch named 'develop'.
- 'explicit|develop'
# Matches a branch named 'main'.
- 'explicit|main'
# Matches a custom regular expression found in $pattern.
- 'custom|'
# Matches a branch like: hotfix/2.1.3.
- 'semantic|hotfix'
# Matches a branch like (the last number MUST be a 0): release/2.1.0.
- 'semantic_end_0|release'
# Matches a branch named 'stage' (MOD FROM DEFAULTS).
- 'explicit|stage'

0 comments on commit 76a3adf

Please sign in to comment.