Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: bump Bazel to version with M1 support (#60)
* chore: bumb Bazel to version with apple silicon support

* chore(github-actions): improve PR title check

Co-authored-by: irinaschubert <i.schubert@docuteam.ch>
Co-authored-by: Balduin Landolt <balduin.landolt@hotmail.com>

> Looks good, thanks!
> 
> I'm assuming it works? Can't test it myself, as I don't have an M1 Mac.
  • Loading branch information
irinaschubert committed May 10, 2021
1 parent eaadb99 commit 69772f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
@@ -1 +1 @@
3.7.0
last_downstream_green
8 changes: 4 additions & 4 deletions .github/workflows/ckeck-pr-title.yml
Expand Up @@ -12,9 +12,9 @@ jobs:
# check PR title
- uses: deepakputhraya/action-pr-title@master
with:
regex: '([a-z])+(\(([a-z\-_])+\))?!?: ([a-zA-Z-\.\d ])+ (\([A-Z]+-\d+\)|\d(\.\d){2}$)' # Regex the title should match.
allowed_prefixes: 'fix,refactor,feat,docs,chore,style,test' # title should start with the given prefix
disallowed_prefixes: 'feature,hotfix,doc' # title should not start with the given prefix
regex: '([a-z])+(\(([a-z\-_ ])+\))?!?: [a-z]([a-zA-Z-\.\d \(\)\[\]#_])+$' # Regex the title should match.
allowed_prefixes: "fix,refactor,feat,docs,chore,style,test" # title should start with the given prefix
disallowed_prefixes: "feature,hotfix,doc" # title should not start with the given prefix
prefix_case_sensitive: true # title prefix are case insensitive
min_length: 7 # Min length of the title
max_length: 60 # Max length of the title
max_length: 120 # Max length of the title

0 comments on commit 69772f4

Please sign in to comment.