From 25ed508249088f3ccf53aabf188626f6450423eb Mon Sep 17 00:00:00 2001 From: justinsb Date: Wed, 24 Jan 2024 09:40:34 -0500 Subject: [PATCH] build: set an email for github actions bot The customary email is noreply@github.com. Without setting an email, we can't pass the CLA. Issue #1144 --- .github/workflows/upgrade-operator.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/upgrade-operator.yaml b/.github/workflows/upgrade-operator.yaml index 383e129cb2..0df7ec0ab1 100644 --- a/.github/workflows/upgrade-operator.yaml +++ b/.github/workflows/upgrade-operator.yaml @@ -40,7 +40,7 @@ jobs: - name: "Check current state" run: | git config user.name "GitHub Actions Bot" - git config user.email "<>" + git config user.email "noreply@github.com" echo "Checking the current state..." echo "Release version: ${{ env.RELEASE_VERSION }}" echo "Location: $(pwd)"