From 0d450fb62d31d42c478a8037ac09c0ad7841481d Mon Sep 17 00:00:00 2001 From: djmailhot Date: Tue, 13 Oct 2020 12:40:31 -0700 Subject: [PATCH] Fix GitHub action workflow for license check CI workflows are failing the license check. This change allows empty git commits in the license check. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca15143..85da45a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: set -x git init git add --all - git -c user.name="CI Bot" -c user.email="<>" commit -m "initial state" + git -c user.name="CI Bot" -c user.email="<>" commit -m "initial state" --allow-empty addlicense ./ test -z $(git diff --name-only | tee /dev/stderr) - name: Setup Cluster