From aeb2f4aed8c3a0aae2373ec2e2c3264264d8260e Mon Sep 17 00:00:00 2001 From: James Estevez Date: Thu, 7 Sep 2023 14:21:58 -0700 Subject: [PATCH] Add a real email for bot commits Fixes the :cla_missing: errors on bot-authored commits. --- .github/workflows/chores.yml | 4 ++-- .github/workflows/pre-release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/chores.yml b/.github/workflows/chores.yml index 1221881940..f069df1417 100644 --- a/.github/workflows/chores.yml +++ b/.github/workflows/chores.yml @@ -48,8 +48,8 @@ jobs: ' cumulusci/cumulusci.yml - name: Commit changes run: | - git config user.name github-actions - git config user.email github-actions@github.com + git config user.name github-actions[bot] + git config user.email 41898282+github-actions[bot]@users.noreply.github.com git switch -c "update-sfdc-api-v$VERSION" git add cumulusci/cumulusci.yml git commit -m "Automated update to sfdc API version $VERSION" diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 43f91a1e9c..8f9399fc2d 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -54,8 +54,8 @@ jobs: python utility/update-history.py - name: Commit changes run: | - git config user.name github-actions - git config user.email github-actions@github.com + git config user.name github-actions[bot] + git config user.email 41898282+github-actions[bot]@users.noreply.github.com git switch -c "release-$(hatch version)" git add docs/history.md cumulusci/__about__.py git commit -m "Update changelog (automated)"