From 41ebd6d63b5e8297f82374a9471a97e01c1167f9 Mon Sep 17 00:00:00 2001 From: Jawed khelil Date: Fri, 19 Jun 2026 06:29:17 +0200 Subject: [PATCH] ci(dependabot): fix CLA failure in regen workflow Use a real contributor identity in the git commit config so the Signed-off-by trailer satisfies EasyCLA. Using tekton-robot@users.noreply.github.com caused the bot account to be flagged as an unsigned CLA signer. Signed-off-by: Jawed khelil Assisted-by: Claude Sonnet 4.6 (via Cursor) Co-authored-by: Cursor --- .github/workflows/dependabot-regen.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dependabot-regen.yml b/.github/workflows/dependabot-regen.yml index 2b06ce36d8..e25993617c 100644 --- a/.github/workflows/dependabot-regen.yml +++ b/.github/workflows/dependabot-regen.yml @@ -54,8 +54,8 @@ jobs: REPOSITORY: ${{ github.repository }} RUN_ID: ${{ github.run_id }} run: | - git config user.name "tekton-robot" - git config user.email "tekton-robot@users.noreply.github.com" + git config user.name "Jawed khelil" + git config user.email "jkhelil@redhat.com" # Create a new branch BRANCH="dependabot-regen-$(date +%Y%m%d-%H%M%S)"