diff --git a/.bazelversion b/.bazelversion index 7c69a55db..c5fbc5af9 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -3.7.0 +last_downstream_green diff --git a/.github/workflows/ckeck-pr-title.yml b/.github/workflows/ckeck-pr-title.yml index 22944c11f..f407700c8 100644 --- a/.github/workflows/ckeck-pr-title.yml +++ b/.github/workflows/ckeck-pr-title.yml @@ -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