We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fc320e commit cb60428Copy full SHA for cb60428
.github/workflows/release.yml
@@ -35,6 +35,16 @@ jobs:
35
ref: dist # Checkout the dist branch
36
token: ${{ secrets.GH_MERGE_TOKEN }} # Use the PAT
37
38
+ - name: Clear Git config cache (Global) # Keep this!
39
+ run: |
40
+ git config --global --unset-all user.name || true
41
+ git config --global --unset-all user.email || true
42
+
43
+ - name: Set Git Identity # Keep this!
44
45
+ git config --global user.name 'googlemaps-bot'
46
+ git config --global user.email '[email protected]'
47
48
- name: Merge main into dist
49
run: |
50
git fetch origin main:main # Fetch main
0 commit comments