Skip to content

CLOUDP-313350: Fix ako-releaser email #2271

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/devbox-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
if: steps.check_changes.outputs.CHANGES == 'true'
run: |
git config user.name "ako-releaser"
git config user.email "285350+your-app[bot]@users.noreply.github.com"
git config user.email "285350+ako-releaser[bot]@users.noreply.github.com"
git checkout -b ${{ steps.generate_branch.outputs.BRANCH_NAME }} # New branch
git add .
git commit -m "Weekly devbox dependencies update"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-helm-charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
echo "Changes detected. Creating PR"

git config user.name "ako-releaser"
git config user.email "285350+your-app[bot]@users.noreply.github.com"
git config user.email "285350+ako-releaser[bot]@users.noreply.github.com"

git checkout -b "${BRANCH_NAME}"
git add .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
echo "Changes detected. Creating PR"

git config user.name "ako-releaser"
git config user.email "285350+your-app[bot]@users.noreply.github.com"
git config user.email "285350+ako-releaser[bot]@users.noreply.github.com"

git checkout -b "${BRANCH_NAME}"
git add .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
if [[ $(git diff --stat) != '' ]]; then
echo 'Committing changes'
git config user.name "ako-releaser"
git config user.email "285350+your-app[bot]@users.noreply.github.com"
git config user.email "285350+ako-releaser[bot]@users.noreply.github.com"
git add .
git commit -m "Fix licenses after dependabot changes" -m "[dependabot skip]"
git push
Expand Down
Loading