Fix GitHub action workflow for license check
CI workflows are failing the license check. This change allows empty git commits in the license check.
This commit is contained in:
parent
65b5da1a9b
commit
0d450fb62d
1 changed files with 1 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue