From 69772f47e9c0ad5c5f0be28d5e60dde30eb916b9 Mon Sep 17 00:00:00 2001 From: irinaschubert Date: Mon, 10 May 2021 09:18:58 +0200 Subject: [PATCH] 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 Co-authored-by: Balduin Landolt > Looks good, thanks! > > I'm assuming it works? Can't test it myself, as I don't have an M1 Mac. --- .bazelversion | 2 +- .github/workflows/ckeck-pr-title.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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