We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5bbc7c commit 9625d36Copy full SHA for 9625d36
.github/workflows/release.yml
@@ -107,8 +107,9 @@ jobs:
107
108
- name: Configures Git
109
run: |
110
- git config --local user.email "[email protected]"
111
- git config --local user.name "GitHub Action"
+ git config --global user.name "${{ github.actor }}"
+ git config --global user.email "$(git log --format='%ae' HEAD^!)"
112
+ git remote set-url origin https://${{ secrets.GIT_REPOSITORY_URL_USERNAME }}:${{ secrets.GIT_REPOSITORY_URL_ACCESS_TOKEN }}@github.com/capricorn86/happy-dom.git
113
114
- name: Creates release branch
115
0 commit comments