spets 0.1.96 → 0.1.97

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -187,12 +187,14 @@ jobs:
187
187
 
188
188
  - name: Push changes
189
189
  run: |
190
- git config user.name "github-actions[bot]"
191
- git config user.email "github-actions[bot]@users.noreply.github.com"
190
+ git config user.name "$COMMENT_AUTHOR"
191
+ git config user.email "$COMMENT_AUTHOR@users.noreply.github.com"
192
192
  git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
193
193
  git add -A
194
194
  git diff --staged --quiet || git commit -m "Spets: Update from #${{ github.event.issue.number }}"
195
195
  git push
196
+ env:
197
+ COMMENT_AUTHOR: ${{ github.event.comment.user.login }}
196
198
 
197
199
  # Cleanup branch when Issue is closed
198
200
  cleanup-branch-on-issue-close: