We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62f1e7f commit 318be95Copy full SHA for 318be95
1 file changed
.github/workflows/release-from-pr-comment.yaml
@@ -67,10 +67,13 @@ jobs:
67
- name: Setup pnpm
68
uses: pnpm/action-setup@v4
69
70
- - name: Configure git
+ - name: Configure CI Git User
71
run: |
72
- git config user.name "github-actions[bot]"
73
- git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
+ git config --global user.name 'CodeLit'
+ git config --global user.email 'hi@codelit.dev'
74
+ git remote set-url origin https://x-access-token:${{ secrets.PAT }}@github.com/${{ github.repository }}
75
+ env:
76
+ GITHUB_PAT: ${{ secrets.PAT }}
77
78
- name: Run release script
79
env:
0 commit comments