Skip to content

Commit 1f2a431

Browse files
authored
Use CLI Bot account (#3562)
1 parent e2950ee commit 1f2a431

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release-build-sign-upload.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ jobs:
105105
run: |
106106
new_tag="v${{ steps.bump-version.outputs.version-build }}"
107107
echo "new version is $new_tag"
108-
git config user.name "GitHub Actions"
109-
git config user.email "github-actions@users.noreply.github.com"
108+
git config user.name "cf-cli-eng"
109+
git config user.email "cf-cli-eng@pivotal.io"
110110
git tag -am "Bump cli version ${new_tag}" ${new_tag}
111111
git push origin $new_tag
112112
@@ -1075,8 +1075,8 @@ jobs:
10751075
git add claw-variables.yml
10761076
10771077
if ! [ -z "$(git status --porcelain)"]; then
1078-
git config user.name github-actions
1079-
git config user.email github-actions@github.com
1078+
git config user.name cf-cli-eng
1079+
git config user.email cf-cli-eng@pivotal.io
10801080
git commit -m "Add CF CLI ${VERSION_BUILD}"
10811081
else
10821082
echo "no new version to commit"

.github/workflows/release-update-repos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ jobs:
183183
git add cf-cli@${VERSION_MAJOR}.rb
184184
185185
if ! [ -z "$(git status --porcelain)"]; then
186-
git config user.name github-actions
187-
git config user.email github-actions@github.com
186+
git config user.name cf-cli-eng
187+
git config user.email cf-cli-eng@pivotal.io
188188
git commit -m "Release CF CLI ${VERSION_BUILD}"
189189
else
190190
echo "no new version to commit"

0 commit comments

Comments
 (0)