|
59 | 59 |
|
60 | 60 | - name: Configure git |
61 | 61 | run: | |
62 | | - git config --global user.name "github-actions[bot]" |
63 | | - git config --global user.email "github-actions[bot]@users.noreply.github.com" |
| 62 | + git config --local user.name "github-actions[bot]" |
| 63 | + git config --local user.email "github-actions[bot]@users.noreply.github.com" |
64 | 64 |
|
65 | 65 | - name: Install dependencies |
66 | 66 | run: npm ci |
@@ -122,7 +122,7 @@ jobs: |
122 | 122 | env: |
123 | 123 | GH_TOKEN: ${{ github.token }} |
124 | 124 | run: | |
125 | | - git config --global url."https://x-access-token:${GH_TOKEN}@github.com/".insteadOf "https://github.com/" |
| 125 | + git config --local url."https://x-access-token:${GH_TOKEN}@github.com/".insteadOf "https://github.com/" |
126 | 126 |
|
127 | 127 | - name: Create release branch and PR |
128 | 128 | env: |
@@ -240,8 +240,8 @@ jobs: |
240 | 240 |
|
241 | 241 | - name: Configure git for tests |
242 | 242 | run: | |
243 | | - git config --global user.name "github-actions[bot]" |
244 | | - git config --global user.email "github-actions[bot]@users.noreply.github.com" |
| 243 | + git config --local user.name "github-actions[bot]" |
| 244 | + git config --local user.email "github-actions[bot]@users.noreply.github.com" |
245 | 245 |
|
246 | 246 | - name: Install uv for Python tests |
247 | 247 | run: curl -LsSf https://astral.sh/uv/install.sh | sh |
@@ -382,14 +382,14 @@ jobs: |
382 | 382 | env: |
383 | 383 | GH_TOKEN: ${{ github.token }} |
384 | 384 | run: | |
385 | | - git config --global url."https://x-access-token:${GH_TOKEN}@github.com/".insteadOf "https://github.com/" |
| 385 | + git config --local url."https://x-access-token:${GH_TOKEN}@github.com/".insteadOf "https://github.com/" |
386 | 386 |
|
387 | 387 | - name: Create and push tag |
388 | 388 | env: |
389 | 389 | VERSION: ${{ steps.version.outputs.version }} |
390 | 390 | run: | |
391 | | - git config --global user.name "github-actions[bot]" |
392 | | - git config --global user.email "github-actions[bot]@users.noreply.github.com" |
| 391 | + git config --local user.name "github-actions[bot]" |
| 392 | + git config --local user.email "github-actions[bot]@users.noreply.github.com" |
393 | 393 | git tag -a "v$VERSION" -m "Release v$VERSION" |
394 | 394 | git push origin "v$VERSION" |
395 | 395 |
|
|
0 commit comments