diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-04-20 19:57:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-20 19:57:22 -0400 |
commit | aaaa877d91c5f8b88722fd1ec725791b0eb4efe0 (patch) | |
tree | 129259c3097fe65c02c8e264ea01d4f2c65573cc | |
parent | 78c9cd9789e0f171a3a9387ed298e764279fb318 (diff) |
chore: fix version bump credentials (#14338)
-rw-r--r-- | .github/workflows/cargo_publish.yml | 4 | ||||
-rw-r--r-- | .github/workflows/version_bump.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/cargo_publish.yml b/.github/workflows/cargo_publish.yml index 2197f688b..6da233cb9 100644 --- a/.github/workflows/cargo_publish.yml +++ b/.github/workflows/cargo_publish.yml @@ -44,6 +44,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }} GH_WORKFLOW_ACTOR: ${{ github.actor }} run: | - git config user.email "${{ github.actor }}@users.noreply.github.com" - git config user.name "${{ github.actor }}" + git config user.email "propelml@gmail.com" + git config user.name "denobot" ./tools/release/04_post_publish.ts diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index a55e48da1..bc8309b22 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -53,6 +53,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }} GH_WORKFLOW_ACTOR: ${{ github.actor }} run: | - git config user.email "${{ github.actor }}@users.noreply.github.com" - git config user.name "${{ github.actor }}" + git config user.email "propelml@gmail.com" + git config user.name "denobot" ./tools/release/02_create_pr.ts |