From 5e452af157427d674d3a752e27bdddcc9d6462ce Mon Sep 17 00:00:00 2001 From: Adam Dierkens Date: Thu, 9 Jun 2022 14:46:41 -0700 Subject: [PATCH] Add auto name --- .autorc | 3 ++- .circleci/config.yml | 3 ++- scripts/test.sh | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.autorc b/.autorc index 863e9e4..f59c4a0 100644 --- a/.autorc +++ b/.autorc @@ -1,6 +1,7 @@ { + "author": "Intuit SVC ", "plugins": [ "git-tag", "released" ] -} \ No newline at end of file +} diff --git a/.circleci/config.yml b/.circleci/config.yml index 512f796..05d734f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -99,4 +99,5 @@ workflows: - release: requires: - test - - build \ No newline at end of file + - build + - checkLabels \ No newline at end of file diff --git a/scripts/test.sh b/scripts/test.sh index 6b68c68..b29c9ef 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -6,7 +6,7 @@ function runtest(){ ROOT=$(pwd) testDir=$1 cd $testDir - bazel clean + bazel clean --async bazel test //... bazel clean cd $ROOT