We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dc25f8 commit e96a835Copy full SHA for e96a835
.github/workflows/generate-newsletter.yml
@@ -24,9 +24,11 @@ jobs:
24
run: |
25
body="${{ github.event.issue.body }}"
26
27
- echo "Raw issue body:"
+ echo "RAW ISSUE BODY START"
28
echo "$body"
29
+ echo "RAW ISSUE BODY END"
30
31
+ # Use awk to find the lines after each heading
32
month=$(echo "$body" | awk '/### Newsletter Month/ {getline; print}' | xargs)
33
year=$(echo "$body" | awk '/### Newsletter Year/ {getline; print}' | xargs)
34
0 commit comments