Skip to content
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

fix(IDX): remove CI github email #3837

Merged
merged 17 commits into from
Feb 11, 2025
2 changes: 1 addition & 1 deletion .github/workflows/ci-generate-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
if [ -n "$(git status --porcelain)" ]; then
git config --global user.name "IDX GitHub Automation"
git config --global user.email "idx@dfinity.org"
git config --global user.email "<>"
git add .
git commit -m "IDX GitHub Automation"
git push
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container-autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
popd
git config --global user.name "IDX GitHub Automation"
git config --global user.email "idx@dfinity.org"
git config --global user.email "<>"
git add .
git commit -m "Updating container image to ${IMAGE_SHA}" -m "Image tag: ${IMAGE_TAG}"
git push
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rosetta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Configure Git
run: |
git config --global user.name "IDX GitHub Automation"
git config --global user.email "idx@dfinity.org"
git config --global user.email "<>"
- name: Check rosetta release version
if: ${{ github.event.inputs.rosetta_release_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-public-with-private.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Sync changes from public ic
run: |
git config --global user.name "IDX GitHub Automation"
git config --global user.email "idx@dfinity.org"
git config --global user.email "<>"
git remote add public https://github.com/dfinity/ic.git
git fetch public master
Expand Down
Loading