We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6a3a21 commit 3ab05e2Copy full SHA for 3ab05e2
1 file changed
.github/workflows/release.yml
@@ -90,11 +90,13 @@ jobs:
90
91
- name: Set git config
92
run: |
93
- git config --global user.email "github-actions@github.com"
94
- git config --global user.name "github-actions"
+ git config --global user.email "${APP_ID}+${APP_SLUG}[bot]@users.noreply.github.com"
+ git config --global user.name "${APP_SLUG}[bot]"
95
git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf https://github.com/
96
env:
97
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
98
+ APP_ID: ${{ vars.APP_ID }}
99
+ APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
100
101
- uses: actions/checkout@v6
102
with:
0 commit comments