Skip to content

Commit d7e1950

Browse files
authored
Add debug step for email extraction in workflow
Added debug step to log extracted email and SHA.
1 parent c6385b4 commit d7e1950

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/credit-reward-automation.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ jobs:
5353
echo "sha=${first_sha}" >> "$GITHUB_OUTPUT"
5454
echo "email=${email}" >> "$GITHUB_OUTPUT"
5555
56+
- name: Debug email extraction
57+
run: |
58+
echo "First commit SHA: ${{ steps.first_commit.outputs.sha }}"
59+
echo "Extracted email: ${{ steps.first_commit.outputs.email }}"
60+
5661
- name: Compute PR diff stats (files/lines)
5762
id: pr_stats
5863
shell: bash

0 commit comments

Comments
 (0)