Skip to content

Commit 868bd16

Browse files
authored
fix: Restores the previous googlemaps-bot email address. (#363)
1 parent 16b215e commit 868bd16

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/dist-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set Git Identity
3333
run: |
3434
git config --global user.name 'googlemaps-bot'
35-
git config --global user.email 'googlemaps-bot@google.com'
35+
git config --global user.email 'googlemaps-bot@users.noreply.github.com'
3636
3737
- name: Create Pull Request
3838
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Set Git Identity
3939
run: |
4040
git config --global user.name 'googlemaps-bot'
41-
git config --global user.email 'googlemaps-bot@google.com'
41+
git config --global user.email 'googlemaps-bot@users.noreply.github.com'
4242
4343
- uses: actions/cache@v3
4444
with:

samples/place-text-search/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async function findPlaces() {
4848
const { LatLngBounds } = await google.maps.importLibrary("core") as google.maps.CoreLibrary;
4949
const bounds = new LatLngBounds();
5050

51-
// Loop through and get all the results
51+
// Loop through and get all the results.
5252
places.forEach((place) => {
5353
const markerView = new AdvancedMarkerElement({
5454
map,

0 commit comments

Comments
 (0)