Skip to content

Commit 3670d6d

Browse files
authored
Merge pull request #82 from algorandfoundation/fix/bot-email
fix: adjust bot email in build scripts
2 parents 9fdcf50 + cd9e7eb commit 3670d6d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/python_api_client_ci_cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ jobs:
8080
env:
8181
GITHUB_TOKEN: ${{ steps.app_token.outputs.token }}
8282
run: |
83-
git config user.name "github-actions[bot]"
84-
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
83+
git config user.name "algokit-ci[bot]"
84+
git config user.email "${{ secrets.BOT_ID }}+algokit-ci[bot]@users.noreply.github.com"
8585
git add .
8686
git commit -m "chore(python/${{ inputs.api }}): bump version to ${{ steps.semantic_release.outputs.version }}"
8787
git push
@@ -222,8 +222,8 @@ jobs:
222222
env:
223223
GITHUB_TOKEN: ${{ steps.app_token.outputs.token }}
224224
run: |
225-
git config user.name "github-actions[bot]"
226-
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
225+
git config user.name "algokit-ci[bot]"
226+
git config user.email "${{ secrets.BOT_ID }}+algokit-ci[bot]@users.noreply.github.com"
227227
git revert --no-commit ${{ needs.get_version.outputs.version_commit_sha }}
228228
git commit -m "chore(python/${{ inputs.api }}): revert version commit made by CI due to failure" -m "failed run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
229229
git push

.github/workflows/python_uniffi_ci_cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ jobs:
7878
env:
7979
GITHUB_TOKEN: ${{ steps.app_token.outputs.token }}
8080
run: |
81-
git config user.name "github-actions[bot]"
82-
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
81+
git config user.name "algokit-ci[bot]"
82+
git config user.email "${{ secrets.BOT_ID }}+algokit-ci[bot]@users.noreply.github.com"
8383
git add pyproject.toml
8484
git commit -m "chore(python/${{ inputs.crate }}): bump version to ${{ steps.semantic_release.outputs.version }}"
8585
git push
@@ -319,8 +319,8 @@ jobs:
319319
env:
320320
GITHUB_TOKEN: ${{ steps.app_token.outputs.token }}
321321
run: |
322-
git config user.name "github-actions[bot]"
323-
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
322+
git config user.name "algokit-ci[bot]"
323+
git config user.email "${{ secrets.BOT_ID }}+algokit-ci[bot]@users.noreply.github.com"
324324
git revert --no-commit ${{ needs.get_version.outputs.version_commit_sha }}
325325
git commit -m "chore(python/${{ inputs.crate }}): revert version commit made by CI due to failure" -m "failed run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
326326
git push

0 commit comments

Comments
 (0)